class documentation

class URLPattern:

View In Hierarchy

Undocumented

Method __init__ Undocumented
Method __repr__ Undocumented
Method ​_check​_callback Undocumented
Method ​_check​_pattern​_name Check that the pattern name does not contain a colon.
Method check Undocumented
Method resolve Undocumented
Instance Variable callback Undocumented
Instance Variable default​_args Undocumented
Instance Variable name Undocumented
Instance Variable pattern Undocumented
Property lookup​_str A string that identifies the view (e.g. 'path.to.view_function' or 'path.to.ClassBasedView').
def __init__(self, pattern, callback, default_args=None, name=None):

Undocumented

def __repr__(self):

Undocumented

def _check_callback(self):

Undocumented

def _check_pattern_name(self):
Check that the pattern name does not contain a colon.
def check(self):

Undocumented

def resolve(self, path):

Undocumented

callback =

Undocumented

default_args =

Undocumented

name =

Undocumented

pattern =

Undocumented

@cached_property
lookup_str =
A string that identifies the view (e.g. 'path.to.view_function' or 'path.to.ClassBasedView').