![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | __init__ |
Public Attributes | |
path_pattern | |
host_exact | |
host | |
path_exact | |
path | |
Dispath Entry URL holder class. Attributes: host_pattern: The host pattern component of the URL pattern. host_exact: True iff the host pattern does not start with a *. host: host_pattern with any leading * removed. path_pattern: The path pattern component of the URL pattern. path_exact: True iff path_pattern does not end with a *. path: path_pattern with any trailing * removed.
def google.appengine.api.dispatchinfo.ParsedURL.__init__ | ( | self, | |
url_pattern | |||
) |
Initializes this ParsedURL with an URL pattern value. Args: url_pattern: An URL pattern that conforms to the regular expression '^([^/]+)(/.*)$'. Raises: validation.ValidationError: When url_pattern does not match the required regular expression.