diff options
-rw-r--r-- | BROKEN_TESTS | 2 | ||||
-rw-r--r-- | Lib/repr.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/BROKEN_TESTS b/BROKEN_TESTS index a14999c..4d513e6 100644 --- a/BROKEN_TESTS +++ b/BROKEN_TESTS @@ -1,4 +1,2 @@ test_pickletools -- Test probably needs to be fixed -test_repr -- test_numbers() fails -test_socket -- ntol problems, see SF patch 1635058 test_sqlite -- CheckLargeInt (sqlite3.test.types.SqliteTypeTests, sqlite3.test.types.DeclTypesTests) diff --git a/Lib/repr.py b/Lib/repr.py index 32544a2..c580168 100644 --- a/Lib/repr.py +++ b/Lib/repr.py @@ -92,7 +92,7 @@ class Repr: s = s[:i] + '...' + s[len(s)-j:] return s - def repr_long(self, x, level): + def repr_int(self, x, level): s = __builtin__.repr(x) # XXX Hope this isn't too slow... if len(s) > self.maxlong: i = max(0, (self.maxlong-3)//2) |