Home
last modified time | relevance | path

Searched refs:URIVariable (Results 1 – 5 of 5) sorted by relevance

/external/python/uritemplates/docs/
Dindex.rst73 # => [URIVariable(/user)]
75 Users can interact with :class:`URIVariable` objects as they see fit, but
77 Code relying on methods defined on :class:`URIVariable` and other classes,
80 .. autoclass:: uritemplate.template.URIVariable
/external/python/uritemplates/uritemplate/
Dvariable.py31 class URIVariable(object): class
88 if self.original[0] in URIVariable.operators:
92 if self.operator in URIVariable.operators[:2]:
93 self.safe = URIVariable.reserved
141 self.safe = URIVariable.reserved
Dtemplate.py20 from uritemplate.variable import URIVariable
72 URIVariable(m.groups()[0]) for m in template_re.finditer(self.uri)
/external/python/uritemplates/tests/
Dtest_uritemplate.py549 self.v = variable.URIVariable('{foo}')
563 self.assertEqual(v.safe, variable.URIVariable.reserved)
571 self.assertEqual(v.safe, variable.URIVariable.reserved)
/external/python/uritemplates/
DHISTORY.rst66 - Backwards incompatible with 0.1.x if using ``URIVariable`` directly from