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
65eabe30
Commit
65eabe30
authored
Jan 14, 2007
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
One more test breakage hits the dust. The test was clearly in the wrong.
parent
56be3b1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
BROKEN_TESTS
BROKEN_TESTS
+1
-2
Lib/test/test_format.py
Lib/test/test_format.py
+1
-1
No files found.
BROKEN_TESTS
View file @
65eabe30
test_format -- '%o' % 0 works? ... no # Unexpected <type 'exceptions.TypeError'> : 'expected string or Unicode object, int found'
test_pickletools -- Test probably needs to be fixed
test_repr -- test_numbers() fails
test_socket --
OverflowError: can't convert negative value to unsigned int
test_socket --
ntol problems, see SF patch 1635058
test_sqlite -- CheckLargeInt (sqlite3.test.types.SqliteTypeTests, sqlite3.test.types.DeclTypesTests)
Lib/test/test_format.py
View file @
65eabe30
...
...
@@ -236,7 +236,7 @@ class Foobar(long):
return
self
+
1
test_exc
(
'%o'
,
Foobar
(),
TypeError
,
"expected string or Unicode object,
long
found"
)
"expected string or Unicode object,
int
found"
)
if
sys
.
maxint
==
2
**
31
-
1
:
# crashes 2.2.1 and earlier:
...
...
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