aboutsummaryrefslogtreecommitdiffstats
path: root/test/lexer.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-12-09 21:40:23 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-12-09 21:40:23 +0000
commit2274d219fe16ece70d4c3d51dfa906a524bd99ca (patch)
tree53413409c9599a5671401c808c4588078d58ee49 /test/lexer.py
parenta834a8a3462ad137d1f358118474a0bd794fe010 (diff)
downloadexternal_python_mako-2274d219fe16ece70d4c3d51dfa906a524bd99ca.tar.gz
external_python_mako-2274d219fe16ece70d4c3d51dfa906a524bd99ca.tar.bz2
external_python_mako-2274d219fe16ece70d4c3d51dfa906a524bd99ca.zip
big overhaul to variable scoping in code generation
Diffstat (limited to 'test/lexer.py')
-rw-r--r--test/lexer.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/lexer.py b/test/lexer.py
index db9d4c8..8b7fe67 100644
--- a/test/lexer.py
+++ b/test/lexer.py
@@ -14,7 +14,6 @@ class LexerTest(unittest.TestCase):
and some more text.
"""
node = Lexer(template).parse()
- print repr(node)
assert repr(node) == r"""TemplateNode({}, [Text('\n<b>Hello world</b>\n ', (1, 1)), DefTag('def', {'name': 'foo'}, (3, 9), ["Text('\\n this is a def.\\n ', (3, 26))"]), Text('\n \n and some more text.\n', (5, 16))])"""
def test_unclosed_tag(self):