mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
A small change to the C API for weakly-referencable types: Such types
must now initialize the extra field used by the weak-ref machinery to NULL themselves, to avoid having to require PyObject_INIT() to check if the type supports weak references and do it there. This causes less work to be done for all objects (the type object does not need to be consulted to check for the Py_TPFLAGS_HAVE_WEAKREFS bit).
This commit is contained in:
parent
82f1480d63
commit
4e262a9631
3 changed files with 8 additions and 5 deletions
|
@ -167,11 +167,7 @@ extern DL_IMPORT(void) _PyObject_Del(PyObject *);
|
|||
/* Macros trading binary compatibility for speed. See also pymem.h.
|
||||
Note that these macros expect non-NULL object pointers.*/
|
||||
#define PyObject_INIT(op, typeobj) \
|
||||
((op)->ob_type = (typeobj), _Py_NewReference((PyObject *)(op)), \
|
||||
(PyType_SUPPORTS_WEAKREFS((typeobj)) \
|
||||
? *(PyObject_GET_WEAKREFS_LISTPTR(op)) = NULL \
|
||||
: NULL), \
|
||||
(op))
|
||||
( (op)->ob_type = (typeobj), _Py_NewReference((PyObject *)(op)), (op) )
|
||||
#define PyObject_INIT_VAR(op, typeobj, size) \
|
||||
( (op)->ob_size = (size), PyObject_INIT((op), (typeobj)) )
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue