Home
last modified time | relevance | path

Searched refs:PyObject_INIT_VAR (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Include/cpython/
Dobjimpl.h88 #define PyObject_INIT_VAR(op, typeobj, size) \ macro
/third_party/python/Include/
Dobjimpl.h145 # define PyObject_INIT_VAR(op, typeobj, size) \ macro
/third_party/python/Objects/
Dobject.c159 return PyObject_INIT_VAR(op, tp, size); in PyObject_InitVar()
181 return PyObject_INIT_VAR(op, tp, nitems); in _PyObject_NewVar()
Dbytesobject.c84 (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()
Dlongobject.c270 return (PyLongObject*)PyObject_INIT_VAR(result, &PyLong_Type, size); in _PyLong_New()
Dtypeobject.c1063 (void) PyObject_INIT_VAR((PyVarObject *)obj, type, nitems); in PyType_GenericAlloc()
/third_party/python/Modules/
Dgcmodule.c2283 op = PyObject_INIT_VAR(op, tp, nitems); in _PyObject_GC_NewVar()
/third_party/python/Doc/whatsnew/
D3.9.rst1285 * ``PyObject_INIT()`` and ``PyObject_INIT_VAR()`` become regular "opaque"
D3.8.rst1570 * :c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`
/third_party/python/Misc/
DNEWS3183 ``PyObject_INIT_VAR()`` are now defined as aliases to
10672 :c:func:`PyObject_INIT_VAR`.