From f828e2d7370bf02e79bd4e58e63656332166b1dc Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Mon, 19 Feb 2001 15:54:52 +0000 Subject: Add simple section for assert, including assert w/ lambdas --- Lib/test/output/test_grammar | 1 + Lib/test/test_grammar.py | 6 ++++++ 2 files changed, 7 insertions(+) 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 -- cgit v0.12