diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-09 22:56:46 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-09 22:56:46 (GMT) |
commit | 97a01674b25739e0fc9e534dacf5a683d8b399e0 (patch) | |
tree | 46200f13facf2ffd3d9d11539758daa67ac423ee /Lib/test/test_grammar.py | |
parent | 6492bf71daf5ef36d32dbd0f26b302dfea0ac4b2 (diff) | |
download | cpython-97a01674b25739e0fc9e534dacf5a683d8b399e0.zip cpython-97a01674b25739e0fc9e534dacf5a683d8b399e0.tar.gz cpython-97a01674b25739e0fc9e534dacf5a683d8b399e0.tar.bz2 |
update test cases for recent compiler changes: exec/import * in nested
functinos and cell vars with */** parameters
Diffstat (limited to 'Lib/test/test_grammar.py')
-rw-r--r-- | Lib/test/test_grammar.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 5865e8c..53ae070 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -386,7 +386,6 @@ import time, sys from time import time from sys import * from sys import path, argv -check_syntax("def f(): from sys import *") print 'global_stmt' # 'global' NAME (',' NAME)* def f(): |