summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-02-19 21:47:02 (GMT)
committerGeorg Brandl <georg@python.org>2011-02-19 21:47:02 (GMT)
commit032400b2d83ba1c2e4ee1cd33f51e9a598b2cf6c (patch)
tree24056a6b70587d6d6148955f188b159532092a46 /Misc
parente0e824d2ed10fc99b7ed7a2eb19fe95bedcdbc8e (diff)
downloadcpython-032400b2d83ba1c2e4ee1cd33f51e9a598b2cf6c.zip
cpython-032400b2d83ba1c2e4ee1cd33f51e9a598b2cf6c.tar.gz
cpython-032400b2d83ba1c2e4ee1cd33f51e9a598b2cf6c.tar.bz2
#11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a static string literal which should not be deallocated together with the type.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 093a126..ff6fd23 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.2?
Core and Builtins
-----------------
+- Issue #11249: Fix potential crashes when using the limited API.
+
Library
-------