aboutsummaryrefslogtreecommitdiffstats
path: root/uritemplate
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2013-10-22 13:12:53 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2013-10-22 13:12:53 -0500
commite9b5bc261b2c5d93efd56c588c9051928a04b2e5 (patch)
tree92b3b5fe136e738e65394aef2b588dd162046b49 /uritemplate
parent32e55abae94e05ae5566a83a5fb1c289cd1378c7 (diff)
downloadplatform_external_python_uritemplates-e9b5bc261b2c5d93efd56c588c9051928a04b2e5.tar.gz
platform_external_python_uritemplates-e9b5bc261b2c5d93efd56c588c9051928a04b2e5.tar.bz2
platform_external_python_uritemplates-e9b5bc261b2c5d93efd56c588c9051928a04b2e5.zip
Actually add partial to the public API
Diffstat (limited to 'uritemplate')
-rw-r--r--uritemplate/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index 0e3ae5a..2bc8ff2 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -19,6 +19,6 @@ __copyright__ = 'Copyright 2013 Ian Cordasco'
__version__ = '0.2.0'
__version_info__ = tuple(int(i) for i in __version__.split('.'))
-from uritemplate.api import URITemplate, expand
+from uritemplate.api import URITemplate, expand, partial
-__all__ = [URITemplate, expand]
+__all__ = [URITemplate, expand, partial]