/opt/alt/python39/include/python3.9
NameSizeModeActions
cpython/-0755rm
internal/-0755rm
abstract.h304760644editdlrm
asdl.h12240644editdlrm
ast.h9470644editdlrm
bitset.h4680644editdlrm
bltinmodule.h2640644editdlrm
boolobject.h8850644editdlrm
bytearrayobject.h14840644editdlrm
bytesobject.h30480644editdlrm
cellobject.h7120644editdlrm
ceval.h59540644editdlrm
classobject.h16570644editdlrm
code.h3180644editdlrm
codecs.h67930644editdlrm
compile.h37780644editdlrm
complexobject.h18060644editdlrm
context.h19620644editdlrm
datetime.h92550644editdlrm
descrobject.h30190644editdlrm
dictobject.h37150644editdlrm
dynamic_annotations.h224690644editdlrm
enumobject.h2530644editdlrm
errcode.h16240644editdlrm
eval.h12090644editdlrm
exports.h10980644editdlrm
fileobject.h15710644editdlrm
fileutils.h5970644editdlrm
floatobject.h43600644editdlrm
frameobject.h3370644editdlrm
funcobject.h40570644editdlrm
genericaliasobject.h3340644editdlrm
genobject.h35250644editdlrm
graminit.h21180644editdlrm
grammar.h18210644editdlrm
import.h30260644editdlrm
interpreteridobject.h3340644editdlrm
intrcheck.h8610644editdlrm
iterobject.h5210644editdlrm
listobject.h17810644editdlrm
longintrepr.h37990644editdlrm
longobject.h95130644editdlrm
marshal.h8030644editdlrm
memoryobject.h27640644editdlrm
methodobject.h37750644editdlrm
modsupport.h99590644editdlrm
moduleobject.h23610644editdlrm
namespaceobject.h3490644editdlrm
node.h12810644editdlrm
object.h246280644editdlrm
objimpl.h84230644editdlrm
odictobject.h12990644editdlrm
opcode.h49000644editdlrm
osdefs.h7370644editdlrm
osmodule.h2910644editdlrm
parsetok.h29580644editdlrm
patchlevel.h12990644editdlrm
picklebufobject.h8460644editdlrm
pyarena.h27440644editdlrm
pycapsule.h17250644editdlrm
pyconfig-64.h480740644editdlrm
pyconfig.h1620644editdlrm
pyctype.h13870644editdlrm
pydebug.h10930644editdlrm
pydtrace.h24130644editdlrm
pyerrors.h124270644editdlrm
pyexpat.h25720644editdlrm
pyfpe.h4440644editdlrm
pyframe.h4660644editdlrm
pyhash.h42630644editdlrm
pylifecycle.h21360644editdlrm
pymacconfig.h29890644editdlrm
pymacro.h49200644editdlrm
pymath.h85800644editdlrm
pymem.h44060644editdlrm
pyport.h312730644editdlrm
pystate.h52500644editdlrm
pystrcmp.h4360644editdlrm
pystrhex.h8490644editdlrm
pystrtod.h14830644editdlrm
Python-ast.h261930644editdlrm
Python.h35320644editdlrm
pythonrun.h76730644editdlrm
pythread.h59380644editdlrm
pytime.h89280644editdlrm
py_curses.h24740644editdlrm
rangeobject.h6280644editdlrm
setobject.h33240644editdlrm
sliceobject.h25160644editdlrm
structmember.h20300644editdlrm
structseq.h13900644editdlrm
symtable.h53070644editdlrm
sysmodule.h12420644editdlrm
token.h26420644editdlrm
traceback.h5840644editdlrm
tracemalloc.h11140644editdlrm
tupleobject.h16140644editdlrm
typeslots.h23500644editdlrm
ucnhash.h10560644editdlrm
unicodeobject.h354260644editdlrm
warnings.h17760644editdlrm
weakrefobject.h28630644editdlrm
Edit: /opt/alt/python39/include/python3.9/weakrefobject.h (2863B)
/* Weak references objects for Python. */ #ifndef Py_WEAKREFOBJECT_H #define Py_WEAKREFOBJECT_H #ifdef __cplusplus extern "C" { #endif typedef struct _PyWeakReference PyWeakReference; /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType, * and CallableProxyType. */ #ifndef Py_LIMITED_API struct _PyWeakReference { PyObject_HEAD /* The object to which this is a weak reference, or Py_None if none. * Note that this is a stealth reference: wr_object's refcount is * not incremented to reflect this pointer. */ PyObject *wr_object; /* A callable to invoke when wr_object dies, or NULL if none. */ PyObject *wr_callback; /* A cache for wr_object's hash code. As usual for hashes, this is -1 * if the hash code isn't known yet. */ Py_hash_t hash; /* If wr_object is weakly referenced, wr_object has a doubly-linked NULL- * terminated list of weak references to it. These are the list pointers. * If wr_object goes away, wr_object is set to Py_None, and these pointers * have no meaning then. */ PyWeakReference *wr_prev; PyWeakReference *wr_next; }; #endif PyAPI_DATA(PyTypeObject) _PyWeakref_RefType; PyAPI_DATA(PyTypeObject) _PyWeakref_ProxyType; PyAPI_DATA(PyTypeObject) _PyWeakref_CallableProxyType; #define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType) #define PyWeakref_CheckRefExact(op) \ Py_IS_TYPE(op, &_PyWeakref_RefType) #define PyWeakref_CheckProxy(op) \ (Py_IS_TYPE(op, &_PyWeakref_ProxyType) || \ Py_IS_TYPE(op, &_PyWeakref_CallableProxyType)) #define PyWeakref_Check(op) \ (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op)) PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob, PyObject *callback); PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob, PyObject *callback); PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); #ifndef Py_LIMITED_API PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head); PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); #endif /* Explanation for the Py_REFCNT() check: when a weakref's target is part of a long chain of deallocations which triggers the trashcan mechanism, clearing the weakrefs can be delayed long after the target's refcount has dropped to zero. In the meantime, code accessing the weakref will be able to "see" the target object even though it is supposed to be unreachable. See issue #16602. */ #define PyWeakref_GET_OBJECT(ref) \ (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \ ? ((PyWeakReference *)(ref))->wr_object \ : Py_None) #ifdef __cplusplus } #endif #endif /* !Py_WEAKREFOBJECT_H */