Home
last modified time | relevance | path

Searched refs:PyWeakref_NewProxy (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Include/
Dweakrefobject.h60 PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
/third_party/python/Modules/
D_weakref.c123 result = PyWeakref_NewProxy(object, callback); in weakref_proxy()
/third_party/python/Doc/c-api/
Dweakref.rst42 .. c:function:: PyObject* PyWeakref_NewProxy(PyObject *ob, PyObject *callback)
/third_party/python/Objects/
Dweakrefobject.c870 PyWeakref_NewProxy(PyObject *ob, PyObject *callback) in PyWeakref_NewProxy() function
/third_party/python/PC/
Dpython3dll.c713 EXPORT_FUNC(PyWeakref_NewProxy)
/third_party/python/Doc/data/
Dstable_abi.dat767 function,PyWeakref_NewProxy,3.2,
Drefcounts.dat2916 PyWeakref_NewProxy:PyObject*::+1:
2917 PyWeakref_NewProxy:PyObject*:ob:0:
2918 PyWeakref_NewProxy:PyObject*:callback:0:
/third_party/python/Misc/
Dstable_abi.txt1486 function PyWeakref_NewProxy
DHISTORY20478 - Fixed problem where PyWeakref_NewRef() and PyWeakref_NewProxy()
/third_party/python/Modules/_ctypes/
D_ctypes.c231 proxy = PyWeakref_NewProxy(item, obj); in PyDict_SetItemProxy()