summaryrefslogtreecommitdiff
path: root/pystache
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-05-05 18:20:02 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-05-05 18:20:02 -0700
commit2aaa7a28c65ab006c416b8db42d0c540ca0a5900 (patch)
tree40dcd0de8391cd16d59346b2fce676a29c613f4f /pystache
parent0de74f66c00ea66abb5ee96cd96e9bf42d41c65d (diff)
downloadpystache-2aaa7a28c65ab006c416b8db42d0c540ca0a5900.tar.gz
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 1a7c37e..d814b55 100644
--- a/pystache/parser.py
+++ b/pystache/parser.py
@@ -16,6 +16,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.
def parse(template, delimiters=None):
"""
Parse a unicode template string and return a ParsedTemplate instance.