Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dobjimpl.h141 PyAPI_FUNC(PyObject **) PyObject_GET_WEAKREFS_LISTPTR(PyObject *op);
/external/python/cpython2/Modules/
D_weakref.c5 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
Dgcmodule.c632 PyObject_GET_WEAKREFS_LISTPTR(op); in handle_weakrefs()
/external/python/cpython2/Include/
Dobjimpl.h363 #define PyObject_GET_WEAKREFS_LISTPTR(o) \ macro
/external/python/cpython2/Objects/
Dweakrefobject.c6 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
Dtypeobject.c1014 PyObject_GET_WEAKREFS_LISTPTR(self); in subtype_dealloc()
/external/python/cpython3/Objects/
Dobject.c2214 PyObject_GET_WEAKREFS_LISTPTR(PyObject *op) in PyObject_GET_WEAKREFS_LISTPTR() function
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a6.rst1177 Convert the :c:func:`PyObject_GET_WEAKREFS_LISTPTR` macro to a function to
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1362 * :c:func:`PyObject_GET_WEAKREFS_LISTPTR` macro was converted to a function: