summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2011-09-28 01:45:30 (GMT)
committerMeador Inge <meadori@gmail.com>2011-09-28 01:45:30 (GMT)
commitb86ecf4bd1bfe237fbaa7ac8098af76141b5caf1 (patch)
tree8f35d013193a4a4d18e4dcbbfe9a00ed7e3a835d /Misc
parent6fb44728bb36d1d0f40155a295ecb15696351b33 (diff)
downloadcpython-b86ecf4bd1bfe237fbaa7ac8098af76141b5caf1.zip
cpython-b86ecf4bd1bfe237fbaa7ac8098af76141b5caf1.tar.gz
cpython-b86ecf4bd1bfe237fbaa7ac8098af76141b5caf1.tar.bz2
Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.
Thanks to Suman Saha for finding the bug and providing a patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a1edc77..6845faa 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -774,6 +774,7 @@ Sam Rushing
Mark Russell
Nick Russo
Sébastien Sablé
+Suman Saha
Hajime Saitou
George Sakkis
Rich Salz
diff --git a/Misc/NEWS b/Misc/NEWS
index 1b03736..b5c75b4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -82,6 +82,9 @@ Tests
Extension Modules
-----------------
+- Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.
+ Thanks to Suman Saha for finding the bug and providing a patch.
+
- Issue #13022: Fix: _multiprocessing.recvfd() doesn't check that
file descriptor was actually received.