diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-04-08 16:39:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-04-08 16:39:48 (GMT) |
commit | 0f81ab6d8895fb6a0b09d517b872a7816060914d (patch) | |
tree | c172bc134bb36ae75702cb40ce24a262fe63c08c /Misc/NEWS | |
parent | fb2ab4d5ae048ee29e98dee30b9f68652a34da85 (diff) | |
download | cpython-0f81ab6d8895fb6a0b09d517b872a7816060914d.zip cpython-0f81ab6d8895fb6a0b09d517b872a7816060914d.tar.gz cpython-0f81ab6d8895fb6a0b09d517b872a7816060914d.tar.bz2 |
Finished implementing gc.get_referrents(): dealt with error and end
cases, wrote docs, added a test.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -49,6 +49,11 @@ Core and builtins Extension modules ----------------- +- New function gc.get_referrents(obj) returns a list of objects + directly referenced by obj. In effect, it exposes what the object's + tp_traverse slot does, and can be helpful when debugging memory + leaks. + - The iconv module has been removed from this release. - The platform-independent routines for packing floats in IEEE formats |