Searched refs:URIVariable (Results 1 – 5 of 5) sorted by relevance
73 # => [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
27 class URIVariable(object): class84 if self.original[0] in URIVariable.operators:88 if self.operator in URIVariable.operators[:2]:89 self.safe = URIVariable.reserved137 self.safe = URIVariable.reserved
19 from uritemplate.variable import URIVariable71 URIVariable(m.groups()[0]) for m in template_re.finditer(self.uri)
503 self.v = variable.URIVariable('{foo}')517 self.assertEqual(v.safe, variable.URIVariable.reserved)525 self.assertEqual(v.safe, variable.URIVariable.reserved)
53 - Backwards incompatible with 0.1.x if using ``URIVariable`` directly from