Commit 5ef6395c authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #22032: __qualname__ instead of __name__ is now always used to format

fully qualified class names of Python implemented classes.
parent 086e9eb8
......@@ -134,7 +134,7 @@ class Extension:
def __repr__(self):
return '<%s.%s(%r) at %#x>' % (
self.__class__.__module__,
self.__class__.__name__,
self.__class__.__qualname__,
self.name,
id(self))
......
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