From ac25a38841b4b14176e52bddeb67fec9e0a81f84 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Tue, 30 Jan 2001 01:25:56 +0000 Subject: add test for illegal imports --- Lib/test/output/test_grammar | 2 ++ Lib/test/test_grammar.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Lib/test/output/test_grammar b/Lib/test/output/test_grammar index b75c22f..a262e79 100644 --- a/Lib/test/output/test_grammar +++ b/Lib/test/output/test_grammar @@ -36,6 +36,8 @@ continue_stmt return_stmt raise_stmt import_stmt +SyntaxError expected for "def f(): from sys import *" +SyntaxError expected for "def f(): global time; import " global_stmt exec_stmt if_stmt diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 8030e69..022398d 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -367,6 +367,8 @@ import time, sys from time import time from sys import * from sys import path, argv +check_syntax("def f(): from sys import *") +check_syntax("def f(): global time; import ") print 'global_stmt' # 'global' NAME (',' NAME)* def f(): -- cgit v0.12