| 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.
|
|
|