commit | 6b3f8d375b9e55727f5a3f62d2bf6204ab8b350a | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Jan 02 09:36:23 2013 -0600 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Jan 02 09:36:23 2013 -0600 |
tree | 362949a7c9ec147218457c7e301f92e260d4f311 | |
parent | 5ca88d2b181fe42ced2f590f2a4115b48860240d [diff] [blame] |
ensure the attribute name string is initalized before using it (closes #16839)
diff --git a/Misc/NEWS b/Misc/NEWS index 0111cb4..4807441 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #16839: Fix a segfault when calling unicode() on a classic class early + in interpreter initialization. + - Issue #16761: Calling ``int()`` and ``long()`` with *base* argument only now raises TypeError.