Lines Matching refs:ob
14 .. c:function:: int PyWeakref_Check(ob)
16 Return true if *ob* is either a reference or proxy object.
21 .. c:function:: int PyWeakref_CheckRef(ob)
23 Return true if *ob* is a reference object.
28 .. c:function:: int PyWeakref_CheckProxy(ob)
30 Return true if *ob* is a proxy object.
35 .. c:function:: PyObject* PyWeakref_NewRef(PyObject *ob, PyObject *callback)
37 Return a weak reference object for the object *ob*. This will always return
40 callable object that receives notification when *ob* is garbage collected; it
42 itself. *callback* may also be ``None`` or *NULL*. If *ob* is not a
49 .. c:function:: PyObject* PyWeakref_NewProxy(PyObject *ob, PyObject *callback)
51 Return a weak reference proxy object for the object *ob*. This will always
54 be a callable object that receives notification when *ob* is garbage
56 reference object itself. *callback* may also be ``None`` or *NULL*. If *ob*