summaryrefslogtreecommitdiff
path: root/pystache
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-05-06 11:09:54 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-05-06 11:10:05 -0700
commitb80d2e949d04954ba7a9a56c18b18ac2d995caff (patch)
treec9c586dcc8c2b75ded436e68baa0eaad4fc50358 /pystache
parenta0feb64106bd9ec0c1fe8954c264dfb140407819 (diff)
downloadpystache-b80d2e949d04954ba7a9a56c18b18ac2d995caff.tar.gz
README tweaks and added a TODO.
Diffstat (limited to 'pystache')
-rw-r--r--pystache/parser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pystache/parser.py b/pystache/parser.py
index d814b55..0365f76 100644
--- a/pystache/parser.py
+++ b/pystache/parser.py
@@ -17,6 +17,7 @@ NON_BLANK_RE = re.compile(ur'^(.)', re.M)
# TODO: add some unit tests for this.
# TODO: add a test case that checks for spurious spaces.
+# TODO: add test cases for delimiters.
def parse(template, delimiters=None):
"""
Parse a unicode template string and return a ParsedTemplate instance.