diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 12:00:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-07-22 12:00:37 (GMT) |
commit | 521e5860a5c121700e6ccc5f07053d21b83652df (patch) | |
tree | 242d90c511e3fbe9f2c09073429351ab02bd7693 /Lib/socket.py | |
parent | c09e9752c689338efff252408f38a77683a12cb4 (diff) | |
download | cpython-521e5860a5c121700e6ccc5f07053d21b83652df.zip cpython-521e5860a5c121700e6ccc5f07053d21b83652df.tar.gz cpython-521e5860a5c121700e6ccc5f07053d21b83652df.tar.bz2 |
Issue #22032: __qualname__ instead of __name__ is now always used to format
fully qualified class names of Python implemented classes.
Diffstat (limited to 'Lib/socket.py')
-rw-r--r-- | Lib/socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socket.py b/Lib/socket.py index cbadff7..72aa220 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -141,7 +141,7 @@ class socket(_socket.socket): closed = getattr(self, '_closed', False) s = "<%s.%s%s fd=%i, family=%s, type=%s, proto=%i" \ % (self.__class__.__module__, - self.__class__.__name__, + self.__class__.__qualname__, " [closed]" if closed else "", self.fileno(), self.family, |