diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 23:00:08 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 23:00:08 (GMT) |
commit | 9344b148282b3a40c44102018e8eac86d6613c51 (patch) | |
tree | ed33bd4fcc6094eb6bdfbc6d7932a15be8d748a2 /Misc/NEWS | |
parent | 01e94618f5b534efb5d39fc9c2ea85fab50e6484 (diff) | |
download | cpython-9344b148282b3a40c44102018e8eac86d6613c51.zip cpython-9344b148282b3a40c44102018e8eac86d6613c51.tar.gz cpython-9344b148282b3a40c44102018e8eac86d6613c51.tar.bz2 |
Add news about memory managent APIs changing.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -127,6 +127,11 @@ Build C API +- The type of tp_free has been changed from "void (*)(PyObject *)" to + "void (*)(void *)". + +- PyObject_Del, PyObject_GC_Del are now functions instead of macros. + - A type can now inherit its metatype from its base type. Previously, when PyType_Ready() was called, if ob_type was found to be NULL, it was always set to &PyType_Type; now it is set to base->ob_type, |