Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dobjimpl.h136 #define PyObject_NewVar(type, typeobj, n) \ macro
141 #define PyObject_NEW_VAR(type, typeobj, n) PyObject_NewVar(type, (typeobj), (n))
/external/python/cpython3/Doc/c-api/
Dallocation.rst39 .. c:macro:: PyObject_NewVar(TYPE, typeobj, size)
56 :c:macro:`PyObject_NewVar`. This is normally called from the
Dgcsupport.rst62 Analogous to :c:macro:`PyObject_NewVar` but for container objects with the
88 Resize an object allocated by :c:macro:`PyObject_NewVar`.
Dmemory.rst767 :c:macro:`PyObject_NewVar` and :c:func:`PyObject_Del`.
Dtypeobj.rst654 using :c:macro:`PyObject_New` or :c:macro:`PyObject_NewVar`, or
/external/python/cpython3/Modules/_testcapi/
Dmem.c367 obj = PyObject_NewVar(PyObject, var_type, 3); in test_pyobject_new()
/external/python/cpython3/Doc/data/
Drefcounts.dat1813 PyObject_NewVar:PyObject*::+1:
1814 PyObject_NewVar::TYPE::
1815 PyObject_NewVar:PyTypeObject*:type:0:
1816 PyObject_NewVar:Py_ssize_t:size::
/external/python/cpython3/Doc/howto/
Disolating-extensions.rst439 If you use use :c:func:`PyObject_New` or :c:func:`PyObject_NewVar`:
446 Replace ``o = PyObject_NewVar(TYPE, typeobj, size)`` with the same,
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a6.rst1154 becomes an alias to the :c:func:`PyObject_NewVar` macro, to hide
/external/python/cpython3/Objects/
Dcodeobject.c681 co = PyObject_NewVar(PyCodeObject, &PyCode_Type, size); in _PyCode_New()
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1390 becomes an alias to the :c:macro:`PyObject_NewVar` macro. They no longer
D3.8.rst2065 :c:macro:`PyObject_NewVar`, :c:func:`PyObject_GC_New`,
D2.3.rst1850 :c:macro:`PyObject_New`, :c:macro:`PyObject_NewVar`, and :c:func:`PyObject_Del`.