diff options
author | Guido van Rossum <guido@python.org> | 2007-01-15 00:14:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-01-15 00:14:39 (GMT) |
commit | 4c9695a9d15661c526867e387967f5f3e82bed6f (patch) | |
tree | 97d694e3cbe914de7686cb0c9383739144a99bd0 /Lib/repr.py | |
parent | 018919aba81093e43d5c5c401a253b0707a8e86f (diff) | |
download | cpython-4c9695a9d15661c526867e387967f5f3e82bed6f.zip cpython-4c9695a9d15661c526867e387967f5f3e82bed6f.tar.gz cpython-4c9695a9d15661c526867e387967f5f3e82bed6f.tar.bz2 |
Fix repr.py -- it was triggering on the type name 'long', should be 'int'.
Diffstat (limited to 'Lib/repr.py')
-rw-r--r-- | Lib/repr.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |