summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2010-02-23 20:32:43 (GMT)
committerThomas Heller <theller@ctypes.org>2010-02-23 20:32:43 (GMT)
commit41c5d2fb56b25a132015853b2612f012ca39be83 (patch)
treeb582ead4677c73dcc8643c1968f02c40c15b5a00 /Misc
parentf99f67be01f23d5f59e058d7286f05b009c02c9a (diff)
downloadcpython-41c5d2fb56b25a132015853b2612f012ca39be83.zip
cpython-41c5d2fb56b25a132015853b2612f012ca39be83.tar.gz
cpython-41c5d2fb56b25a132015853b2612f012ca39be83.tar.bz2
Merged revisions 78382 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r78382 | thomas.heller | 2010-02-23 21:25:02 +0100 (Di, 23 Feb 2010) | 11 lines Merged revisions 78380 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78380 | thomas.heller | 2010-02-23 21:11:44 +0100 (Di, 23 Feb 2010) | 4 lines ctypes CThunkObject was not registered correctly with the cycle garbage collector, leading to possible leaks when using callback functions. ........ ................
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 5ae0d1a..329cb40 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -86,6 +86,9 @@ Core and Builtins
Library
-------
+- Issue #7959: ctypes callback functions are now registered correctly
+ with the cylce garbage collector.
+
- Issue #6666: fix bug in trace.py that applied the list of directories
to be ignored only to the first file. Noted by Bogdan Opanchuk.