Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: third_party/pystache/src/__init__.py

Issue 2962783004: Adding pystache to third_party (Closed)
Patch Set: Merge branch 'master' into mustache Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pystache/README.chromium ('k') | third_party/pystache/src/common.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pystache/src/__init__.py
diff --git a/third_party/pystache/src/__init__.py b/third_party/pystache/src/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..4cf24344e5010a1f97be5747a1b2798112276a87
--- /dev/null
+++ b/third_party/pystache/src/__init__.py
@@ -0,0 +1,13 @@
+
+"""
+TODO: add a docstring.
+
+"""
+
+# We keep all initialization code in a separate module.
+
+from pystache.init import parse, render, Renderer, TemplateSpec
+
+__all__ = ['parse', 'render', 'Renderer', 'TemplateSpec']
+
+__version__ = '0.5.4' # Also change in setup.py.
« no previous file with comments | « third_party/pystache/README.chromium ('k') | third_party/pystache/src/common.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698