mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Updated comment
This commit is contained in:
parent
080bb2a424
commit
1582a3ab98
2 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ extern DL_IMPORT(void) _PyObject_Del(PyObject *);
|
|||
( (type *) _PyObject_NewVar((typeobj), (n)) )
|
||||
#define PyObject_Del(op) _PyObject_Del((PyObject *)(op))
|
||||
|
||||
/* Macros trading binary compatibility for speed. See also mymalloc.h.
|
||||
/* 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)), (op) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue