/usr/include/python3.6m
NameSizeModeActions
abstract.h474510644editdlrm
accu.h10160644editdlrm
asdl.h12130644editdlrm
ast.h4770644editdlrm
bitset.h7920644editdlrm
bltinmodule.h2640644editdlrm
boolobject.h8860644editdlrm
bytearrayobject.h21140644editdlrm
bytesobject.h83630644editdlrm
bytes_methods.h31910644editdlrm
cellobject.h7010644editdlrm
ceval.h85240644editdlrm
classobject.h16660644editdlrm
code.h59450644editdlrm
codecs.h67930644editdlrm
compile.h21640644editdlrm
complexobject.h18070644editdlrm
datetime.h94140644editdlrm
descrobject.h29640644editdlrm
dictobject.h71780644editdlrm
dtoa.h4580644editdlrm
dynamic_annotations.h224690644editdlrm
enumobject.h2530644editdlrm
errcode.h14970644editdlrm
eval.h5970644editdlrm
fileobject.h16510644editdlrm
fileutils.h35240644editdlrm
floatobject.h47940644editdlrm
frameobject.h35300644editdlrm
funcobject.h40790644editdlrm
genobject.h35830644editdlrm
graminit.h19660644editdlrm
grammar.h20740644editdlrm
import.h42330644editdlrm
intrcheck.h5130644editdlrm
iterobject.h5670644editdlrm
listobject.h29000644editdlrm
longintrepr.h37610644editdlrm
longobject.h98300644editdlrm
marshal.h8030644editdlrm
memoryobject.h27650644editdlrm
metagrammar.h2530644editdlrm
methodobject.h38470644editdlrm
modsupport.h73170644editdlrm
moduleobject.h22850644editdlrm
namespaceobject.h3490644editdlrm
node.h10070644editdlrm
object.h422030644editdlrm
objimpl.h142440644editdlrm
odictobject.h12880644editdlrm
opcode.h50730644editdlrm
osdefs.h6910644editdlrm
osmodule.h2910644editdlrm
parsetok.h28850644editdlrm
patchlevel.h11280644editdlrm
pgen.h2530644editdlrm
pgenheaders.h11800644editdlrm
pyarena.h27440644editdlrm
pyatomic.h81280644editdlrm
pycapsule.h17260644editdlrm
pyconfig-64.h446220644editdlrm
pyconfig.h1620644editdlrm
pyctype.h13200644editdlrm
pydebug.h12640644editdlrm
pydtrace.h19700644editdlrm
pyerrors.h172190644editdlrm
pyexpat.h24500644editdlrm
pyfpe.h84710644editdlrm
pygetopt.h4100644editdlrm
pyhash.h41390644editdlrm
pylifecycle.h40780644editdlrm
pymacconfig.h29890644editdlrm
pymacro.h35000644editdlrm
pymath.h83120644editdlrm
pymem.h85570644editdlrm
pyport.h275730644editdlrm
pystate.h111460644editdlrm
pystrcmp.h4360644editdlrm
pystrhex.h4950644editdlrm
pystrtod.h14830644editdlrm
Python-ast.h222740644editdlrm
Python.h32210644editdlrm
pythonrun.h67820644editdlrm
pythread.h29920644editdlrm
pytime.h76090644editdlrm
py_curses.h43070644editdlrm
rangeobject.h6290644editdlrm
setobject.h33330644editdlrm
sliceobject.h24850644editdlrm
structmember.h20180644editdlrm
structseq.h13530644editdlrm
symtable.h49940644editdlrm
sysmodule.h13550644editdlrm
token.h19430644editdlrm
traceback.h36440644editdlrm
tupleobject.h24440644editdlrm
typeslots.h22530644editdlrm
ucnhash.h10560644editdlrm
unicodeobject.h817790644editdlrm
warnings.h16930644editdlrm
weakrefobject.h28660644editdlrm
_hashopenssl.h13650644editdlrm
Edit: /usr/include/python3.6m/methodobject.h (3847B)
/* 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 *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames); typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, 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 **args, Py_ssize_t nargs, PyObject *kwargs); PyAPI_FUNC(PyObject *) _PyCFunction_FastCallKeywords(PyObject *func, PyObject **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 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; #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 */