golden hour
/opt/alt/python37/include/python3.7m
⬆️ Go Up
Upload
File/Folder
Size
Actions
Python-ast.h
21.29 KB
Del
OK
Python.h
3.47 KB
Del
OK
abstract.h
39.84 KB
Del
OK
accu.h
1016 B
Del
OK
asdl.h
1.18 KB
Del
OK
ast.h
641 B
Del
OK
bitset.h
810 B
Del
OK
bltinmodule.h
264 B
Del
OK
boolobject.h
886 B
Del
OK
bytearrayobject.h
2.06 KB
Del
OK
bytes_methods.h
3.22 KB
Del
OK
bytesobject.h
8.29 KB
Del
OK
cellobject.h
713 B
Del
OK
ceval.h
8.51 KB
Del
OK
classobject.h
1.64 KB
Del
OK
code.h
5.92 KB
Del
OK
codecs.h
6.63 KB
Del
OK
compile.h
2.88 KB
Del
OK
complexobject.h
1.76 KB
Del
OK
context.h
1.97 KB
Del
OK
datetime.h
9.62 KB
Del
OK
descrobject.h
3.06 KB
Del
OK
dictobject.h
7.15 KB
Del
OK
dtoa.h
458 B
Del
OK
dynamic_annotations.h
21.94 KB
Del
OK
enumobject.h
253 B
Del
OK
errcode.h
1.66 KB
Del
OK
eval.h
1.18 KB
Del
OK
fileobject.h
1.77 KB
Del
OK
fileutils.h
4.43 KB
Del
OK
floatobject.h
4.68 KB
Del
OK
frameobject.h
3.24 KB
Del
OK
funcobject.h
4.08 KB
Del
OK
genobject.h
3.56 KB
Del
OK
graminit.h
1.95 KB
Del
OK
grammar.h
2.26 KB
Del
OK
import.h
4.86 KB
Del
OK
internal
-
Del
OK
intrcheck.h
861 B
Del
OK
iterobject.h
567 B
Del
OK
listobject.h
2.86 KB
Del
OK
longintrepr.h
3.71 KB
Del
OK
longobject.h
8.39 KB
Del
OK
marshal.h
803 B
Del
OK
memoryobject.h
2.7 KB
Del
OK
metagrammar.h
253 B
Del
OK
methodobject.h
4.41 KB
Del
OK
modsupport.h
8.36 KB
Del
OK
moduleobject.h
2.25 KB
Del
OK
namespaceobject.h
349 B
Del
OK
node.h
1.09 KB
Del
OK
object.h
40.86 KB
Del
OK
objimpl.h
14.13 KB
Del
OK
odictobject.h
1.25 KB
Del
OK
opcode.h
4.99 KB
Del
OK
osdefs.h
691 B
Del
OK
osmodule.h
291 B
Del
OK
parsetok.h
2.84 KB
Del
OK
patchlevel.h
1.27 KB
Del
OK
pgen.h
253 B
Del
OK
pgenheaders.h
1.19 KB
Del
OK
py_curses.h
3.97 KB
Del
OK
pyarena.h
2.68 KB
Del
OK
pyatomic.h
15.74 KB
Del
OK
pycapsule.h
1.69 KB
Del
OK
pyconfig-64.h
44.27 KB
Del
OK
pyconfig.h
162 B
Del
OK
pyctype.h
1.29 KB
Del
OK
pydebug.h
1.19 KB
Del
OK
pydtrace.h
2.23 KB
Del
OK
pyerrors.h
16.96 KB
Del
OK
pyexpat.h
2.39 KB
Del
OK
pyfpe.h
341 B
Del
OK
pyhash.h
4.04 KB
Del
OK
pylifecycle.h
7.6 KB
Del
OK
pymacconfig.h
2.92 KB
Del
OK
pymacro.h
3.45 KB
Del
OK
pymath.h
8.12 KB
Del
OK
pymem.h
8.78 KB
Del
OK
pyport.h
27.57 KB
Del
OK
pystate.h
15.94 KB
Del
OK
pystrcmp.h
436 B
Del
OK
pystrhex.h
495 B
Del
OK
pystrtod.h
1.45 KB
Del
OK
pythonrun.h
6.06 KB
Del
OK
pythread.h
5.21 KB
Del
OK
pytime.h
8.72 KB
Del
OK
rangeobject.h
629 B
Del
OK
setobject.h
3.28 KB
Del
OK
sliceobject.h
2.42 KB
Del
OK
structmember.h
1.98 KB
Del
OK
structseq.h
1.34 KB
Del
OK
symtable.h
4.81 KB
Del
OK
sysmodule.h
1.48 KB
Del
OK
token.h
2.42 KB
Del
OK
traceback.h
3.56 KB
Del
OK
tupleobject.h
2.41 KB
Del
OK
typeslots.h
2.2 KB
Del
OK
ucnhash.h
1.03 KB
Del
OK
unicodeobject.h
80.35 KB
Del
OK
warnings.h
1.73 KB
Del
OK
weakrefobject.h
2.8 KB
Del
OK
Edit: methodobject.h
/* Method object interface */ #ifndef Py_METHODOBJECT_H #define Py_METHODOBJECT_H #ifdef __cplusplus extern "C" { #endif /* This is about the type 'builtin_function_or_method', not Python methods in user-defined classes. See classobject.h for the latter. */ PyAPI_DATA(PyTypeObject) PyCFunction_Type; #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type) typedef PyObject *(*PyCFunction)(PyObject *, PyObject *); typedef PyObject *(*_PyCFunctionFast) (PyObject *, PyObject *const *, Py_ssize_t); typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, PyObject *); typedef PyObject *(*_PyCFunctionFastWithKeywords) (PyObject *, PyObject *const *, Py_ssize_t, PyObject *); typedef PyObject *(*PyNoArgsFunction)(PyObject *); PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *); PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *); PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *); /* Macros for direct access to these values. Type checks are *not* done, so use with care. */ #ifndef Py_LIMITED_API #define PyCFunction_GET_FUNCTION(func) \ (((PyCFunctionObject *)func) -> m_ml -> ml_meth) #define PyCFunction_GET_SELF(func) \ (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \ NULL : ((PyCFunctionObject *)func) -> m_self) #define PyCFunction_GET_FLAGS(func) \ (((PyCFunctionObject *)func) -> m_ml -> ml_flags) #endif PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *); #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject *) _PyCFunction_FastCallDict(PyObject *func, PyObject *const *args, Py_ssize_t nargs, PyObject *kwargs); PyAPI_FUNC(PyObject *) _PyCFunction_FastCallKeywords(PyObject *func, PyObject *const *stack, Py_ssize_t nargs, PyObject *kwnames); #endif struct PyMethodDef { const char *ml_name; /* The name of the built-in function/method */ PyCFunction ml_meth; /* The C function that implements it */ int ml_flags; /* Combination of METH_xxx flags, which mostly describe the args expected by the C func */ const char *ml_doc; /* The __doc__ attribute, or NULL */ }; typedef struct PyMethodDef PyMethodDef; #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, PyObject *); /* Flag passed to newmethodobject */ /* #define METH_OLDARGS 0x0000 -- unsupported now */ #define METH_VARARGS 0x0001 #define METH_KEYWORDS 0x0002 /* METH_NOARGS and METH_O must not be combined with the flags above. */ #define METH_NOARGS 0x0004 #define METH_O 0x0008 /* METH_CLASS and METH_STATIC are a little different; these control the construction of methods for a class. These cannot be used for functions in modules. */ #define METH_CLASS 0x0010 #define METH_STATIC 0x0020 /* METH_COEXIST allows a method to be entered even though a slot has already filled the entry. When defined, the flag allows a separate method, "__contains__" for example, to coexist with a defined slot like sq_contains. */ #define METH_COEXIST 0x0040 #ifndef Py_LIMITED_API #define METH_FASTCALL 0x0080 #endif /* This bit is preserved for Stackless Python */ #ifdef STACKLESS #define METH_STACKLESS 0x0100 #else #define METH_STACKLESS 0x0000 #endif #ifndef Py_LIMITED_API typedef struct { PyObject_HEAD PyMethodDef *m_ml; /* Description of the C function to call */ PyObject *m_self; /* Passed as 'self' arg to the C func, can be NULL */ PyObject *m_module; /* The __module__ attribute, can be anything */ PyObject *m_weakreflist; /* List of weak references */ } PyCFunctionObject; PyAPI_FUNC(PyObject *) _PyMethodDef_RawFastCallDict( PyMethodDef *method, PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwargs); PyAPI_FUNC(PyObject *) _PyMethodDef_RawFastCallKeywords( PyMethodDef *method, PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames); #endif PyAPI_FUNC(int) PyCFunction_ClearFreeList(void); #ifndef Py_LIMITED_API PyAPI_FUNC(void) _PyCFunction_DebugMallocStats(FILE *out); PyAPI_FUNC(void) _PyMethod_DebugMallocStats(FILE *out); #endif #ifdef __cplusplus } #endif #endif /* !Py_METHODOBJECT_H */
Save