Hackfut Security File Manager
Current Path:
/usr/include/python2.6
usr
/
include
/
python2.6
/
📁
..
📄
Python-ast.h
(19.61 KB)
📄
Python.h
(4.19 KB)
📄
abstract.h
(43.58 KB)
📄
asdl.h
(1.07 KB)
📄
ast.h
(230 B)
📄
bitset.h
(792 B)
📄
boolobject.h
(912 B)
📄
bufferobject.h
(922 B)
📄
bytearrayobject.h
(1.9 KB)
📄
bytes_methods.h
(3.19 KB)
📄
bytesobject.h
(1.42 KB)
📄
cStringIO.h
(1.95 KB)
📄
cellobject.h
(651 B)
📄
ceval.h
(5 KB)
📄
classobject.h
(2.87 KB)
📄
cobject.h
(1.83 KB)
📄
code.h
(3.44 KB)
📄
codecs.h
(4.9 KB)
📄
compile.h
(1.13 KB)
📄
complexobject.h
(1.5 KB)
📄
datetime.h
(8.42 KB)
📄
descrobject.h
(2.42 KB)
📄
dictobject.h
(5.83 KB)
📄
enumobject.h
(253 B)
📄
errcode.h
(1.33 KB)
📄
eval.h
(557 B)
📄
fileobject.h
(2.85 KB)
📄
floatobject.h
(4.94 KB)
📄
frameobject.h
(2.85 KB)
📄
funcobject.h
(2.92 KB)
📄
genobject.h
(891 B)
📄
graminit.h
(1.86 KB)
📄
grammar.h
(1.97 KB)
📄
import.h
(2.16 KB)
📄
intobject.h
(2.67 KB)
📄
intrcheck.h
(274 B)
📄
iterobject.h
(522 B)
📄
listobject.h
(2.45 KB)
📄
longintrepr.h
(2.26 KB)
📄
longobject.h
(5.45 KB)
📄
marshal.h
(713 B)
📄
metagrammar.h
(253 B)
📄
methodobject.h
(3.16 KB)
📄
modsupport.h
(5.24 KB)
📄
moduleobject.h
(609 B)
📄
node.h
(890 B)
📄
object.h
(36.52 KB)
📄
objimpl.h
(12.78 KB)
📄
opcode.h
(4.24 KB)
📄
osdefs.h
(942 B)
📄
parsetok.h
(1.74 KB)
📄
patchlevel.h
(1.4 KB)
📄
pgen.h
(253 B)
📄
pgenheaders.h
(1.12 KB)
📄
py_curses.h
(4.29 KB)
📄
pyarena.h
(2.63 KB)
📄
pyconfig-64.h
(30.5 KB)
📄
pyconfig.h
(162 B)
📄
pyctype.h
(1.05 KB)
📄
pydebug.h
(1.29 KB)
📄
pydtrace.h
(1.32 KB)
📄
pyerrors.h
(11.44 KB)
📄
pyexpat.h
(1.91 KB)
📄
pyfpe.h
(8.3 KB)
📄
pygetopt.h
(348 B)
📄
pymacconfig.h
(2.43 KB)
📄
pymactoolbox.h
(7.76 KB)
📄
pymath.h
(6.46 KB)
📄
pymem.h
(4.57 KB)
📄
pyport.h
(24.2 KB)
📄
pystate.h
(6.18 KB)
📄
pystrcmp.h
(463 B)
📄
pystrtod.h
(359 B)
📄
pythonrun.h
(6.94 KB)
📄
pythread.h
(1.41 KB)
📄
rangeobject.h
(646 B)
📄
setobject.h
(3 KB)
📄
sliceobject.h
(1.3 KB)
📄
stringobject.h
(7.69 KB)
📄
structmember.h
(2.83 KB)
📄
structseq.h
(862 B)
📄
symtable.h
(3.96 KB)
📄
sysmodule.h
(916 B)
📄
timefuncs.h
(442 B)
📄
token.h
(1.67 KB)
📄
traceback.h
(697 B)
📄
tupleobject.h
(2.07 KB)
📄
ucnhash.h
(861 B)
📄
unicodeobject.h
(51.08 KB)
📄
warnings.h
(635 B)
📄
weakrefobject.h
(2.37 KB)
Editing: weakrefobject.h
/* 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. */ 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. */ long 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; }; 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_TYPE(op) == &_PyWeakref_RefType) #define PyWeakref_CheckProxy(op) \ ((Py_TYPE(op) == &_PyWeakref_ProxyType) || \ (Py_TYPE(op) == &_PyWeakref_CallableProxyType)) /* This macro calls PyWeakref_CheckRef() last since that can involve a function call; this makes it more likely that the function call will be avoided. */ #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); PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head); PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); #define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object) #ifdef __cplusplus } #endif #endif /* !Py_WEAKREFOBJECT_H */
Upload File
Create Folder