summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-04-24 18:39:36 (GMT)
committerThomas Heller <theller@ctypes.org>2008-04-24 18:39:36 (GMT)
commite106dc3cf6eb32a54ca8274963a09904cd936025 (patch)
tree98b8b6aeff436f5faf1c6f1bd31c6666a98601ca /Misc
parenta4618736c037b23b99badfcab65296833f309c2a (diff)
downloadcpython-e106dc3cf6eb32a54ca8274963a09904cd936025.zip
cpython-e106dc3cf6eb32a54ca8274963a09904cd936025.tar.gz
cpython-e106dc3cf6eb32a54ca8274963a09904cd936025.tar.bz2
Merged revisions 62481 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r62481 | thomas.heller | 2008-04-24 20:14:19 +0200 (Do, 24 Apr 2008) | 3 lines Remove cyclic reference in CFuncPtr instances; see issue #2682. Backport candidate for the release25-maint branch. ........
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 7a8744f..0ac400d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Extension Modules
Library
-------
+- Issue #2682: ctypes callback functions now longer contain a cyclic
+ reference to themselves.
+
- Issue #2058: Remove the buf attribute and add __slots__ to the TarInfo
class in order to reduce tarfile's memory usage.