diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-03 13:56:31 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-03 13:56:31 -0400 |
commit | 542ad006a86f14381ee368ac60c2a5e3547a8f0c (patch) | |
tree | a5d565e2387a16d2fe62b659957c3814ec1b515f /test/test_ast.py | |
parent | 3bd802b9504d9d6f81cb35801cc61267f1f9697c (diff) | |
download | external_python_mako-542ad006a86f14381ee368ac60c2a5e3547a8f0c.tar.gz external_python_mako-542ad006a86f14381ee368ac60c2a5e3547a8f0c.tar.bz2 external_python_mako-542ad006a86f14381ee368ac60c2a5e3547a8f0c.zip |
- [bug] Fixed Py3K bug where a "lambda" expression was not
interpreted correctly within a template tag. [ticket:190]
Diffstat (limited to 'test/test_ast.py')
-rw-r--r-- | test/test_ast.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_ast.py b/test/test_ast.py index 84508c7..008bd55 100644 --- a/test/test_ast.py +++ b/test/test_ast.py @@ -316,6 +316,7 @@ import x as bar "repr({'x':-1})", "repr(((1,2,3), (4,5,6)))", "repr(1 and 2 and 3 and 4)", "repr(True and False or 55)", + "repr(lambda x, y: x+y)", "repr(1 & 2 | 3)", "repr(3//5)", "repr(3^5)", |