diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:17 +0300 |
commit | d3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch) | |
tree | dd4bd3ca0f36b817e96812825ffaf10d645803f2 /contrib/tools/cython/Cython/Includes/cpython/weakref.pxd | |
parent | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff) | |
download | ydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/tools/cython/Cython/Includes/cpython/weakref.pxd')
-rw-r--r-- | contrib/tools/cython/Cython/Includes/cpython/weakref.pxd | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/contrib/tools/cython/Cython/Includes/cpython/weakref.pxd b/contrib/tools/cython/Cython/Includes/cpython/weakref.pxd index c95605d017..9c4b50f564 100644 --- a/contrib/tools/cython/Cython/Includes/cpython/weakref.pxd +++ b/contrib/tools/cython/Cython/Includes/cpython/weakref.pxd @@ -1,42 +1,42 @@ from .object cimport PyObject - -cdef extern from "Python.h": - - bint PyWeakref_Check(object ob) - # Return true if ob is either a reference or proxy object. - - bint PyWeakref_CheckRef(object ob) - # Return true if ob is a reference object. - - bint PyWeakref_CheckProxy(ob) - # Return true if *ob* is a proxy object. - - object PyWeakref_NewRef(object ob, object callback) - # Return a weak reference object for the object ob. This will - # always return a new reference, but is not guaranteed to create a - # new object; an existing reference object may be returned. The - # second parameter, callback, can be a callable object that - # receives notification when ob is garbage collected; it should - # accept a single parameter, which will be the weak reference - # object itself. callback may also be None or NULL. If ob is not - # a weakly-referencable object, or if callback is not callable, - # None, or NULL, this will return NULL and raise TypeError. - - object PyWeakref_NewProxy(object ob, object callback) - # Return a weak reference proxy object for the object ob. This - # will always return a new reference, but is not guaranteed to - # create a new object; an existing proxy object may be returned. - # The second parameter, callback, can be a callable object that - # receives notification when ob is garbage collected; it should - # accept a single parameter, which will be the weak reference - # object itself. callback may also be None or NULL. If ob is not - # a weakly-referencable object, or if callback is not callable, - # None, or NULL, this will return NULL and raise TypeError. - + +cdef extern from "Python.h": + + bint PyWeakref_Check(object ob) + # Return true if ob is either a reference or proxy object. + + bint PyWeakref_CheckRef(object ob) + # Return true if ob is a reference object. + + bint PyWeakref_CheckProxy(ob) + # Return true if *ob* is a proxy object. + + object PyWeakref_NewRef(object ob, object callback) + # Return a weak reference object for the object ob. This will + # always return a new reference, but is not guaranteed to create a + # new object; an existing reference object may be returned. The + # second parameter, callback, can be a callable object that + # receives notification when ob is garbage collected; it should + # accept a single parameter, which will be the weak reference + # object itself. callback may also be None or NULL. If ob is not + # a weakly-referencable object, or if callback is not callable, + # None, or NULL, this will return NULL and raise TypeError. + + object PyWeakref_NewProxy(object ob, object callback) + # Return a weak reference proxy object for the object ob. This + # will always return a new reference, but is not guaranteed to + # create a new object; an existing proxy object may be returned. + # The second parameter, callback, can be a callable object that + # receives notification when ob is garbage collected; it should + # accept a single parameter, which will be the weak reference + # object itself. callback may also be None or NULL. If ob is not + # a weakly-referencable object, or if callback is not callable, + # None, or NULL, this will return NULL and raise TypeError. + PyObject* PyWeakref_GetObject(object ref) except NULL - # Return the referenced object from a weak reference, ref. If the - # referent is no longer live, returns None. - - PyObject* PyWeakref_GET_OBJECT(object ref) - # Similar to PyWeakref_GetObject, but implemented as a macro that - # does no error checking. + # Return the referenced object from a weak reference, ref. If the + # referent is no longer live, returns None. + + PyObject* PyWeakref_GET_OBJECT(object ref) + # Similar to PyWeakref_GetObject, but implemented as a macro that + # does no error checking. |