Home
last modified time | relevance | path

Searched refs:PyObject_Init (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Include/
Dobjimpl.h119 PyAPI_FUNC(PyObject *) PyObject_Init(PyObject *, PyTypeObject *);
144 PyObject_Init(_PyObject_CAST(op), (typeobj))
/external/python/cpython3/Doc/c-api/
Dallocation.rst15 .. c:function:: PyObject* PyObject_Init(PyObject *op, PyTypeObject *type)
26 This does everything :c:func:`PyObject_Init` does, and also initializes the
/external/python/cpython2/Include/
Dobjimpl.h150 PyAPI_FUNC(PyObject *) PyObject_Init(PyObject *, PyTypeObject *);
193 ( (type *) PyObject_Init( \
/external/python/cpython2/Doc/c-api/
Dallocation.rst22 .. c:function:: PyObject* PyObject_Init(PyObject *op, PyTypeObject *type)
33 This does everything :c:func:`PyObject_Init` does, and also initializes the
/external/python/cpython3/PC/
Dpython3.def479 PyObject_Init=python39.PyObject_Init
/external/python/cpython2/PC/os2emx/
Dpython27.def482 "PyObject_Init"
/external/python/cpython2/Doc/data/
Drefcounts.dat995 PyObject_Init:PyObject*::0:
996 PyObject_Init:PyObject*:op:0:
/external/python/cpython3/Doc/data/
Drefcounts.dat1725 PyObject_Init:PyObject*::0:
1726 PyObject_Init:PyObject*:op:0:
1727 PyObject_Init:PyTypeObject*:type:0:
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a4.rst899 now defined as aliases to :c:func:`PyObject_Init` and
D3.8.0a4.rst1408 Modify ``PyObject_Init`` to correctly increase the refcount of heap-
/external/python/cpython3/Objects/
Dobject.c141 PyObject_Init(PyObject *op, PyTypeObject *tp) in PyObject_Init() function
Dunicodeobject.c8407 PyObject_Init(result, &EncodingMapType); in PyUnicode_BuildEncodingMap()
/external/python/cpython2/Objects/
Dobject.c218 PyObject_Init(PyObject *op, PyTypeObject *tp) in PyObject_Init() function
Dunicodeobject.c4458 PyObject_Init(result, &EncodingMapType); in PyUnicode_BuildEncodingMap()
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1615 in :c:func:`PyObject_Init` (and its parallel macro ``PyObject_INIT``)
2039 :c:func:`PyObject_Init` and :c:func:`PyObject_INIT`.
2059 :c:func:`PyObject_Init` or :c:func:`PyObject_INIT`.
/external/python/cffi/c/
D_cffi_backend.c1017 if (PyObject_Init((PyObject *)scd, &CData_Type) == NULL) in new_sized_cdata()
3538 if (PyObject_Init((PyObject *)cd, &CDataOwning_Type) == NULL) in allocate_owning_object()
3826 if (PyObject_Init((PyObject *)cd, &CData_Type) == NULL) in _new_casted_primitive()