diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 15:00:37 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 15:00:37 +0300 |
commit | 521e5860a5c121700e6ccc5f07053d21b83652df (patch) | |
tree | 242d90c511e3fbe9f2c09073429351ab02bd7693 /Lib/codecs.py | |
parent | c09e9752c689338efff252408f38a77683a12cb4 (diff) | |
download | cpython-git-521e5860a5c121700e6ccc5f07053d21b83652df.tar.gz |
Issue #22032: __qualname__ instead of __name__ is now always used to format
fully qualified class names of Python implemented classes.
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r-- | Lib/codecs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index c2065dafa2..993451711a 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -99,8 +99,8 @@ class CodecInfo(tuple): return self def __repr__(self): - return "<%s.%s object for encoding %s at 0x%x>" % \ - (self.__class__.__module__, self.__class__.__name__, + return "<%s.%s object for encoding %s at %#x>" % \ + (self.__class__.__module__, self.__class__.__qualname__, self.name, id(self)) class Codec: |