From: Neil Schemenauer Date: Fri, 12 Apr 2002 23:00:08 +0000 (+0000) Subject: Add news about memory managent APIs changing. X-Git-Tag: v2.3c1~5988 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9344b148282b3a40c44102018e8eac86d6613c51;p=python Add news about memory managent APIs changing. --- diff --git a/Misc/NEWS b/Misc/NEWS index e4b0bb2bb8..62a4828607 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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,