commit | dbc52f8a0d3c496e642dbc92c684f873e67f3127 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Mar 16 10:58:46 2012 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Mar 16 10:58:46 2012 -0500 |
tree | 25e405ed6e834b60e012cf7b461f19de9c78e508 | |
parent | 6e7832b04caf33196a56c153821631d33bbb3bff [diff] [blame] |
check for string attribute names in old-style classes (closes #14334)
diff --git a/Misc/NEWS b/Misc/NEWS index 40c88d9..471051f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,7 +10,8 @@ ----------------- - Issue #14334: Prevent in a segfault in type.__getattribute__ when it was not - passed strings. + passed strings. Also fix segfaults in the __getattribute__ and __setattr__ + methods of old-style classes. - Issue #14161: fix the __repr__ of file objects to escape the file name.