From: Jeremy Hylton Date: Mon, 19 Feb 2001 15:54:52 +0000 (+0000) Subject: Add simple section for assert, including assert w/ lambdas X-Git-Tag: v2.1b1~287 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f828e2d7370bf02e79bd4e58e63656332166b1dc;p=thirdparty%2FPython%2Fcpython.git Add simple section for assert, including assert w/ lambdas --- diff --git a/Lib/test/output/test_grammar b/Lib/test/output/test_grammar index 70d88365497b..927b4feb9447 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 781f373bb105..587d7ecfcf47 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