Searched refs:PyObject_NewVar (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython3/Include/ |
D | objimpl.h | 136 #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/ |
D | allocation.rst | 39 .. c:macro:: PyObject_NewVar(TYPE, typeobj, size) 56 :c:macro:`PyObject_NewVar`. This is normally called from the
|
D | gcsupport.rst | 62 Analogous to :c:macro:`PyObject_NewVar` but for container objects with the 88 Resize an object allocated by :c:macro:`PyObject_NewVar`.
|
D | memory.rst | 767 :c:macro:`PyObject_NewVar` and :c:func:`PyObject_Del`.
|
D | typeobj.rst | 654 using :c:macro:`PyObject_New` or :c:macro:`PyObject_NewVar`, or
|
/external/python/cpython3/Modules/_testcapi/ |
D | mem.c | 367 obj = PyObject_NewVar(PyObject, var_type, 3); in test_pyobject_new()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1813 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/ |
D | isolating-extensions.rst | 439 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/ |
D | 3.9.0a6.rst | 1154 becomes an alias to the :c:func:`PyObject_NewVar` macro, to hide
|
/external/python/cpython3/Objects/ |
D | codeobject.c | 681 co = PyObject_NewVar(PyCodeObject, &PyCode_Type, size); in _PyCode_New()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.9.rst | 1390 becomes an alias to the :c:macro:`PyObject_NewVar` macro. They no longer
|
D | 3.8.rst | 2065 :c:macro:`PyObject_NewVar`, :c:func:`PyObject_GC_New`,
|
D | 2.3.rst | 1850 :c:macro:`PyObject_New`, :c:macro:`PyObject_NewVar`, and :c:func:`PyObject_Del`.
|