Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fe8d84d5
Commit
fe8d84d5
authored
Jan 28, 2003
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comment out a test that was anticipating SF patch 661536 -- but that
isn't checked in yet. :-(
parent
baefd9e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Lib/test/test_compile.py
Lib/test/test_compile.py
+6
-6
No files found.
Lib/test/test_compile.py
View file @
fe8d84d5
...
...
@@ -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)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment