Comment out a test that was anticipating SF patch 661536 -- but that

isn't checked in yet. :-(
This commit is contained in:
Guido van Rossum 2003-01-28 20:39:49 +00:00
parent baefd9e552
commit fe8d84d5ae
1 changed files with 6 additions and 6 deletions

View File

@ -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)