diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-19 15:54:52 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-19 15:54:52 (GMT) |
commit | f828e2d7370bf02e79bd4e58e63656332166b1dc (patch) | |
tree | 854a35a7735b3bc080ac7b307c68bde1ff1e3c7b | |
parent | 384639f80ec8154333b42063bb769296b3a708ca (diff) | |
download | cpython-f828e2d7370bf02e79bd4e58e63656332166b1dc.zip cpython-f828e2d7370bf02e79bd4e58e63656332166b1dc.tar.gz cpython-f828e2d7370bf02e79bd4e58e63656332166b1dc.tar.bz2 |
Add simple section for assert, including assert w/ lambdas
-rw-r--r-- | Lib/test/output/test_grammar | 1 | ||||
-rw-r--r-- | Lib/test/test_grammar.py | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/output/test_grammar b/Lib/test/output/test_grammar index 70d8836..927b4fe 100644 --- a/Lib/test/output/test_grammar +++ b/Lib/test/output/test_grammar @@ -37,6 +37,7 @@ raise_stmt import_stmt global_stmt exec_stmt +assert_stmt if_stmt while_stmt for_stmt diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 781f373..587d7ec 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -417,6 +417,12 @@ if l.has_key('__builtins__'): del l['__builtins__'] if (g, l) != ({'a':1}, {'b':2}): raise TestFailed, 'exec ... in g (%s), l (%s)' %(g,l) +print "assert_stmt" # assert_stmt: 'assert' test [',' test] +assert 1 +assert 1, 1 +assert lambda x:x +assert 1, lambda x:x+1 + ### compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | funcdef | classdef # Tested below |