diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 09:14:52 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 09:14:52 (GMT) |
commit | 0c937b3ed6d2eeca84fa4aca1a9aef685db65abc (patch) | |
tree | f5691e459361ce03018098bbad26f9472e8340e5 /Lib/reprlib.py | |
parent | fbc877b7940beaa23fea020b8a137a660eff419e (diff) | |
download | cpython-0c937b3ed6d2eeca84fa4aca1a9aef685db65abc.zip cpython-0c937b3ed6d2eeca84fa4aca1a9aef685db65abc.tar.gz cpython-0c937b3ed6d2eeca84fa4aca1a9aef685db65abc.tar.bz2 |
Issue #22031: Reprs now always use hexadecimal format with the "0x" prefix
when contain an id in form " at 0x...".
Diffstat (limited to 'Lib/reprlib.py')
-rw-r--r-- | Lib/reprlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/reprlib.py b/Lib/reprlib.py index f803360..b7fda23 100644 --- a/Lib/reprlib.py +++ b/Lib/reprlib.py @@ -136,7 +136,7 @@ class Repr: # Bugs in x.__repr__() can cause arbitrary # exceptions -- then make up something except Exception: - return '<%s instance at %x>' % (x.__class__.__name__, id(x)) + return '<%s instance at %#x>' % (x.__class__.__name__, id(x)) if len(s) > self.maxother: i = max(0, (self.maxother-3)//2) j = max(0, self.maxother-3-i) |