diff options
author | Georg Brandl <georg@python.org> | 2011-02-19 21:47:02 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-19 21:47:02 (GMT) |
commit | 032400b2d83ba1c2e4ee1cd33f51e9a598b2cf6c (patch) | |
tree | 24056a6b70587d6d6148955f188b159532092a46 /Misc | |
parent | e0e824d2ed10fc99b7ed7a2eb19fe95bedcdbc8e (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 ------- |