/
usr
/
include
/
python3.10
/
/usr/include/python3.10
mkdir
upload
Name
Size
Mode
Actions
cpython/
-
0755
rm
internal/
-
0755
rm
abstract.h
31405
0644
edit
dl
rm
bltinmodule.h
264
0644
edit
dl
rm
boolobject.h
1224
0644
edit
dl
rm
bytearrayobject.h
1484
0644
edit
dl
rm
bytesobject.h
2593
0644
edit
dl
rm
cellobject.h
720
0644
edit
dl
rm
ceval.h
5703
0644
edit
dl
rm
classobject.h
1657
0644
edit
dl
rm
code.h
318
0644
edit
dl
rm
codecs.h
7071
0644
edit
dl
rm
compile.h
520
0644
edit
dl
rm
complexobject.h
1806
0644
edit
dl
rm
context.h
1962
0644
edit
dl
rm
datetime.h
9635
0644
edit
dl
rm
descrobject.h
3002
0644
edit
dl
rm
dictobject.h
3853
0644
edit
dl
rm
dynamic_annotations.h
22471
0644
edit
dl
rm
enumobject.h
253
0644
edit
dl
rm
errcode.h
1700
0644
edit
dl
rm
eval.h
831
0644
edit
dl
rm
exports.h
1098
0644
edit
dl
rm
fileobject.h
1571
0644
edit
dl
rm
fileutils.h
508
0644
edit
dl
rm
floatobject.h
4360
0644
edit
dl
rm
frameobject.h
337
0644
edit
dl
rm
funcobject.h
4257
0644
edit
dl
rm
genericaliasobject.h
334
0644
edit
dl
rm
genobject.h
3347
0644
edit
dl
rm
graminit.h
0
0644
edit
dl
rm
import.h
3026
0644
edit
dl
rm
interpreteridobject.h
334
0644
edit
dl
rm
intrcheck.h
772
0644
edit
dl
rm
iterobject.h
593
0644
edit
dl
rm
listobject.h
1781
0644
edit
dl
rm
longintrepr.h
3799
0644
edit
dl
rm
longobject.h
8606
0644
edit
dl
rm
marshal.h
803
0644
edit
dl
rm
memoryobject.h
2764
0644
edit
dl
rm
methodobject.h
4147
0644
edit
dl
rm
modsupport.h
10333
0644
edit
dl
rm
moduleobject.h
2458
0644
edit
dl
rm
namespaceobject.h
349
0644
edit
dl
rm
object.h
28344
0644
edit
dl
rm
objimpl.h
8445
0644
edit
dl
rm
opcode.h
5509
0644
edit
dl
rm
osdefs.h
737
0644
edit
dl
rm
osmodule.h
291
0644
edit
dl
rm
patchlevel.h
1301
0644
edit
dl
rm
pycapsule.h
1725
0644
edit
dl
rm
pyconfig.h
4159
0644
edit
dl
rm
pydtrace.h
2413
0644
edit
dl
rm
pyerrors.h
12426
0644
edit
dl
rm
pyexpat.h
2450
0644
edit
dl
rm
pyframe.h
466
0644
edit
dl
rm
pyhash.h
4223
0644
edit
dl
rm
pylifecycle.h
2080
0644
edit
dl
rm
pymacconfig.h
2989
0644
edit
dl
rm
pymacro.h
4920
0644
edit
dl
rm
pymath.h
8313
0644
edit
dl
rm
pymem.h
3891
0644
edit
dl
rm
pyport.h
31684
0644
edit
dl
rm
pystate.h
5250
0644
edit
dl
rm
pystrcmp.h
436
0644
edit
dl
rm
pystrhex.h
849
0644
edit
dl
rm
pystrtod.h
1483
0644
edit
dl
rm
Python.h
3224
0644
edit
dl
rm
pythonrun.h
1110
0644
edit
dl
rm
pythread.h
5989
0644
edit
dl
rm
py_curses.h
2474
0644
edit
dl
rm
rangeobject.h
628
0644
edit
dl
rm
setobject.h
3381
0644
edit
dl
rm
sliceobject.h
2516
0644
edit
dl
rm
structmember.h
2074
0644
edit
dl
rm
structseq.h
1390
0644
edit
dl
rm
sysmodule.h
1242
0644
edit
dl
rm
token.h
2669
0644
edit
dl
rm
traceback.h
584
0644
edit
dl
rm
tracemalloc.h
1114
0644
edit
dl
rm
tupleobject.h
1614
0644
edit
dl
rm
typeslots.h
2460
0644
edit
dl
rm
unicodeobject.h
36148
0644
edit
dl
rm
warnings.h
1776
0644
edit
dl
rm
weakrefobject.h
2863
0644
edit
dl
rm
Edit:
/usr/include/python3.10/methodobject.h
(4147B)
/* 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_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type) #define PyCFunction_Check(op) PyObject_TypeCheck(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 *(*PyCMethod)(PyObject *, PyTypeObject *, PyObject *const *, size_t, PyObject *); PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *); PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *); PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *); Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *); 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; /* PyCFunction_New is declared as a function for stable ABI (declaration is * needed for e.g. GCC with -fvisibility=hidden), but redefined as a macro * that calls PyCFunction_NewEx. */ PyAPI_FUNC(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *); #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) /* PyCFunction_NewEx is similar: on 3.9+, this calls PyCMethod_New. */ PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, PyObject *); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03090000 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) PyAPI_FUNC(PyObject *) PyCMethod_New(PyMethodDef *, PyObject *, PyObject *, PyTypeObject *); #endif /* 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 #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030a0000 # define METH_FASTCALL 0x0080 #endif /* This bit is preserved for Stackless Python */ #ifdef STACKLESS # define METH_STACKLESS 0x0100 #else # define METH_STACKLESS 0x0000 #endif /* METH_METHOD means the function stores an * additional reference to the class that defines it; * both self and class are passed to it. * It uses PyCMethodObject instead of PyCFunctionObject. * May not be combined with METH_NOARGS, METH_O, METH_CLASS or METH_STATIC. */ #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03090000 #define METH_METHOD 0x0200 #endif #ifndef Py_LIMITED_API #define Py_CPYTHON_METHODOBJECT_H #include "cpython/methodobject.h" #undef Py_CPYTHON_METHODOBJECT_H #endif #ifdef __cplusplus } #endif #endif /* !Py_METHODOBJECT_H */
Save
cmd:
run