Commit 65eabe30 authored by Guido van Rossum's avatar Guido van Rossum

One more test breakage hits the dust. The test was clearly in the wrong.

parent 56be3b1c
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)
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment