diff options
author | Michael W. Hudson <mwh@python.net> | 2004-11-08 16:46:02 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2004-11-08 16:46:02 (GMT) |
commit | e0b855fac96e858934e9792c6d04bfb2f35b3b9d (patch) | |
tree | 0fb464f1c794473b2c01bf945ce80ea558c4a9ee /Lib | |
parent | 05522ad795fe83dd1ffee4923c36d2ee8890708c (diff) | |
download | cpython-e0b855fac96e858934e9792c6d04bfb2f35b3b9d.zip cpython-e0b855fac96e858934e9792c6d04bfb2f35b3b9d.tar.gz cpython-e0b855fac96e858934e9792c6d04bfb2f35b3b9d.tar.bz2 |
test for fixedness of bug #1057835.
(thanks to Raymond for the prod).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_compiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_compiler.py b/Lib/test/test_compiler.py index e51bc42..9976a47 100644 --- a/Lib/test/test_compiler.py +++ b/Lib/test/test_compiler.py @@ -90,6 +90,8 @@ try: finally: b = 0 +from math import * + ############################################################################### def test_main(): |