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/test/test_traceback.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/test/test_traceback.py')
-rw-r--r-- | Lib/test/test_traceback.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index c295563..e3b28bd 100644 --- a/Lib/test/test_traceback.py +++ b/Lib/test/test_traceback.py @@ -92,9 +92,9 @@ class SyntaxTracebackCases(unittest.TestCase): self.assertEqual(len(err), 1) str_value = '<unprintable %s object>' % X.__name__ if X.__module__ in ('__main__', 'builtins'): - str_name = X.__name__ + str_name = X.__qualname__ else: - str_name = '.'.join([X.__module__, X.__name__]) + str_name = '.'.join([X.__module__, X.__qualname__]) self.assertEqual(err[0], "%s: %s\n" % (str_name, str_value)) def test_without_exception(self): |