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 | 0996f49983c7463bd31595c0e2e2aa9995d62970 (patch) | |
tree | b01f5e00097ff20b8445e9219eb6f185b478fb9c /Lib/test/test_configparser.py | |
parent | e3720ea8727fa1135ff90a1fb2fec0a63bcb8f8b (diff) | |
download | cpython-0996f49983c7463bd31595c0e2e2aa9995d62970.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/test/test_configparser.py')
-rw-r--r-- | Lib/test/test_configparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_configparser.py b/Lib/test/test_configparser.py index 78bd315344..742b12b4a8 100644 --- a/Lib/test/test_configparser.py +++ b/Lib/test/test_configparser.py @@ -579,7 +579,7 @@ boolean {0[0]} NO return e else: self.fail("expected exception type %s.%s" - % (exc.__module__, exc.__name__)) + % (exc.__module__, exc.__qualname__)) def test_boolean(self): cf = self.fromstring( |