summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/util.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-07-22 12:00:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-07-22 12:00:37 (GMT)
commit521e5860a5c121700e6ccc5f07053d21b83652df (patch)
tree242d90c511e3fbe9f2c09073429351ab02bd7693 /Lib/unittest/util.py
parentc09e9752c689338efff252408f38a77683a12cb4 (diff)
downloadcpython-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/unittest/util.py')
-rw-r--r--Lib/unittest/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/util.py b/Lib/unittest/util.py
index aee498f..45485dc 100644
--- a/Lib/unittest/util.py
+++ b/Lib/unittest/util.py
@@ -52,7 +52,7 @@ def safe_repr(obj, short=False):
return result[:_MAX_LENGTH] + ' [truncated]...'
def strclass(cls):
- return "%s.%s" % (cls.__module__, cls.__name__)
+ return "%s.%s" % (cls.__module__, cls.__qualname__)
def sorted_list_difference(expected, actual):
"""Finds elements in only one or the other of two, sorted input lists.