summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_compile.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-01-28 20:39:49 (GMT)
committerGuido van Rossum <guido@python.org>2003-01-28 20:39:49 (GMT)
commitfe8d84d5aea0f8ff9c27276473b1b8a1d69f5aeb (patch)
treeafaafeb246be86a5ddf65dddb1d82cc9c7a618b9 /Lib/test/test_compile.py
parentbaefd9e552723c6489c69cf5df93f82b473550a2 (diff)
downloadcpython-fe8d84d5aea0f8ff9c27276473b1b8a1d69f5aeb.zip
cpython-fe8d84d5aea0f8ff9c27276473b1b8a1d69f5aeb.tar.gz
cpython-fe8d84d5aea0f8ff9c27276473b1b8a1d69f5aeb.tar.bz2
Comment out a test that was anticipating SF patch 661536 -- but that
isn't checked in yet. :-(
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r--Lib/test/test_compile.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py
index 3530457..4b522ac 100644
--- a/Lib/test/test_compile.py
+++ b/Lib/test/test_compile.py
@@ -133,9 +133,9 @@ expect_same("000000000000007", 7)
expect_same("000000000000008.", 8.)
expect_same("000000000000009.", 9.)
-# Verify treatment of unary minus on negative numbers SF bug #660455
-import warnings
-warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning)
-# XXX Of course the following test will have to be changed in Python 2.4
-expect_same("0xffffffff", -1)
-expect_same("-0xffffffff", 1)
+## # Verify treatment of unary minus on negative numbers SF bug #660455
+## import warnings
+## warnings.filterwarnings("ignore", "hex/oct constants", FutureWarning)
+## # XXX Of course the following test will have to be changed in Python 2.4
+## expect_same("0xffffffff", -1)
+## expect_same("-0xffffffff", 1)