Searched refs:PyObject_INIT_VAR (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Include/cpython/ |
D | objimpl.h | 88 #define PyObject_INIT_VAR(op, typeobj, size) \ macro
|
/third_party/python/Include/ |
D | objimpl.h | 145 # define PyObject_INIT_VAR(op, typeobj, size) \ macro
|
/third_party/python/Objects/ |
D | object.c | 159 return PyObject_INIT_VAR(op, tp, size); in PyObject_InitVar() 181 return PyObject_INIT_VAR(op, tp, nitems); in _PyObject_NewVar()
|
D | bytesobject.c | 84 (void)PyObject_INIT_VAR(op, &PyBytes_Type, size); in _PyBytes_FromSize() 153 (void)PyObject_INIT_VAR(op, &PyBytes_Type, size); in PyBytes_FromString() 1438 (void)PyObject_INIT_VAR(op, &PyBytes_Type, size); in bytes_repeat()
|
D | longobject.c | 270 return (PyLongObject*)PyObject_INIT_VAR(result, &PyLong_Type, size); in _PyLong_New()
|
D | typeobject.c | 1063 (void) PyObject_INIT_VAR((PyVarObject *)obj, type, nitems); in PyType_GenericAlloc()
|
/third_party/python/Modules/ |
D | gcmodule.c | 2283 op = PyObject_INIT_VAR(op, tp, nitems); in _PyObject_GC_NewVar()
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 1285 * ``PyObject_INIT()`` and ``PyObject_INIT_VAR()`` become regular "opaque"
|
D | 3.8.rst | 1570 * :c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`
|
/third_party/python/Misc/ |
D | NEWS | 3183 ``PyObject_INIT_VAR()`` are now defined as aliases to 10672 :c:func:`PyObject_INIT_VAR`.
|