summaryrefslogtreecommitdiff
path: root/pystache/__init__.py
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-04-15 17:24:57 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-04-15 17:24:57 -0700
commit567c41443e8fb46da0dea257600429f0711b023b (patch)
tree418020f845dc6f419664c3e38340ce74db9f9db1 /pystache/__init__.py
parent943b6123f1cffb299fdfafd9a589b67b1b21c7a1 (diff)
downloadpystache-567c41443e8fb46da0dea257600429f0711b023b.tar.gz
Added a TODO to pystache/__init__.py about "from pystache import *".
Diffstat (limited to 'pystache/__init__.py')
-rw-r--r--pystache/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pystache/__init__.py b/pystache/__init__.py
index c1070e3..1bf7173 100644
--- a/pystache/__init__.py
+++ b/pystache/__init__.py
@@ -1,2 +1,6 @@
# We keep all initialization code in a separate module.
from pystache.init import *
+
+# TODO: make sure that "from pystache import *" exposes only the following:
+# ['__version__', 'render', 'Renderer', 'TemplateSpec']
+# and add a unit test for this.