summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-16 14:32:59 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-16 14:32:59 (GMT)
commit16d84ac355c532a1e7d25cf75e0b577923de2856 (patch)
tree975ca5f98cf91f599673cf4a9e7477d11667b989 /Misc
parent3fb05a90cefe29bad82c87336fa32de36e6add3d (diff)
downloadcpython-16d84ac355c532a1e7d25cf75e0b577923de2856.zip
cpython-16d84ac355c532a1e7d25cf75e0b577923de2856.tar.gz
cpython-16d84ac355c532a1e7d25cf75e0b577923de2856.tar.bz2
check to make sure the attribute is a string (#14334)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 772f78e..6659aad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14334: Prevent in a segfault in type.__getattribute__ when it was not
+ passed strings.
+
- Issue #1469629: Allow cycles through an object's __dict__ slot to be
collected. (For example if ``x.__dict__ is x``).