Home
last modified time | relevance | path

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

/third_party/python/Include/
Dobjimpl.h140 #define PyObject_NewVar(type, typeobj, n) \ macro
145 #define PyObject_NEW_VAR(type, typeobj, n) PyObject_NewVar(type, typeobj, n)
/third_party/python/Doc/c-api/
Dallocation.rst39 .. c:function:: TYPE* PyObject_NewVar(TYPE, PyTypeObject *type, Py_ssize_t size)
54 :c:func:`PyObject_NewVar`. This is normally called from the
Dgcsupport.rst65 Analogous to :c:func:`PyObject_NewVar` but for container objects with the
71 Resize an object allocated by :c:func:`PyObject_NewVar`. Returns the
Dmemory.rst736 :c:func:`PyObject_NewVar` and :c:func:`PyObject_Del`.
/third_party/python/Doc/data/
Drefcounts.dat1758 PyObject_NewVar:PyObject*::+1:
1759 PyObject_NewVar::TYPE::
1760 PyObject_NewVar:PyTypeObject*:type:0:
1761 PyObject_NewVar:Py_ssize_t:size::
/third_party/python/Objects/
Dcodeobject.c481 PyCodeObject *co = PyObject_NewVar(PyCodeObject, &PyCode_Type, size); in _PyCode_New()
/third_party/python/Doc/whatsnew/
D3.9.rst1393 becomes an alias to the :c:func:`PyObject_NewVar` macro. They no longer
D3.8.rst2062 :c:func:`PyObject_NewVar`, :c:func:`PyObject_GC_New`,
D2.3.rst1850 :c:func:`PyObject_New`, :c:func:`PyObject_NewVar`, and :c:func:`PyObject_Del`.
/third_party/python/Misc/
DNEWS13025 becomes an alias to the :c:func:`PyObject_NewVar` macro, to hide