Home
last modified time | relevance | path

Searched refs:PyObject_GC_NewVar (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Misc/
Dpymemcompat.h79 #define PyObject_GC_NewVar PyObject_NewVar macro
DHISTORY7018 - use PyObject_GC_New or PyObject_GC_NewVar to allocate objects and
/external/python/cpython2/Doc/c-api/
Dgcsupport.rst34 or :c:func:`PyObject_GC_NewVar`.
46 .. c:function:: TYPE* PyObject_GC_NewVar(TYPE, PyTypeObject *type, Py_ssize_t size)
92 :c:func:`PyObject_GC_NewVar`.
Dtypeobj.rst193 :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`.
/external/python/cpython2/Include/
Dobjimpl.h315 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c390 p = PyObject_GC_NewVar(CThunkObject, &PyCThunk_Type, nArgs); in CThunkObject_new()
/external/python/cpython2/Objects/
Dframeobject.c680 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, in PyFrame_New()
Dtupleobject.c90 op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); in PyTuple_New()
/external/python/cpython2/Doc/whatsnew/
D2.2.rst1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate