diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-20 20:33:42 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-20 20:33:42 (GMT) |
commit | 8471a35febdbfbfab51b9d4b5fe51694fe6ca536 (patch) | |
tree | 133cebe6f1f3f40b7ed5e0359b376a11c24118c6 /Lib/test/regrtest.py | |
parent | 1e35ce58e8e1d8c4ac9c54c1422dc5827bb47124 (diff) | |
download | cpython-8471a35febdbfbfab51b9d4b5fe51694fe6ca536.zip cpython-8471a35febdbfbfab51b9d4b5fe51694fe6ca536.tar.gz cpython-8471a35febdbfbfab51b9d4b5fe51694fe6ca536.tar.bz2 |
Fix SF bug [ #450245 ] Error in parsing future stmts
Add test case to cover multiple future statements on separate lines of
a module.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 4c7b4be..6a4b7fd 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -214,6 +214,7 @@ NOTTESTS = [ 'test_b2', 'test_future1', 'test_future2', + 'test_future3', ] def findtests(testdir=None, stdtests=STDTESTS, nottests=NOTTESTS): |