summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-08 10:07:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-08 10:07:16 (GMT)
commit12f33df4a2712c23beba00bcf60338dd980be2d7 (patch)
treeff5b16c54bbd07b0848ee3dea39e88c5e8c936c1 /Misc
parentf04d1bb17053a4ba6194777b5f7e5a0bab0c5995 (diff)
parent305e1a749ff1b39e6c2009fb25111cca24f7a874 (diff)
downloadcpython-12f33df4a2712c23beba00bcf60338dd980be2d7.zip
cpython-12f33df4a2712c23beba00bcf60338dd980be2d7.tar.gz
cpython-12f33df4a2712c23beba00bcf60338dd980be2d7.tar.bz2
Issue #16628: Fix a memory leak in ctypes.resize().
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 61270f4..5fcc347 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -104,6 +104,8 @@ Core and Builtins
Library
-------
+- Issue #16628: Fix a memory leak in ctypes.resize().
+
- Issue #13120: Allow to call pdb.set_trace() from thread.
Patch by Ilya Sandler.