Add simple section for assert, including assert w/ lambdas

This commit is contained in:
Jeremy Hylton 2001-02-19 15:54:52 +00:00
parent 384639f80e
commit f828e2d737
2 changed files with 7 additions and 0 deletions

View File

@ -37,6 +37,7 @@ raise_stmt
import_stmt
global_stmt
exec_stmt
assert_stmt
if_stmt
while_stmt
for_stmt

View File

@ -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