🐐 GOAT Shell
Current path:
opt
/
alt
/
python36
/
include
/
python3.6m
/
👤 Create WP Admin
⬆️
Go up: include
✏️ Editing: 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 *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 */
Save
📄
abstract.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
accu.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
asdl.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ast.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bitset.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bltinmodule.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
boolobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bytearrayobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bytesobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
bytes_methods.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
cellobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ceval.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
classobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
code.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
codecs.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
compile.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
complexobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
datetime.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
descrobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dictobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dtoa.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
dynamic_annotations.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
enumobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
errcode.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
eval.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
fileobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
fileutils.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
floatobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
frameobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
funcobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
genobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
graminit.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
grammar.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
import.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
intrcheck.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
iterobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
listobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
longintrepr.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
longobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
marshal.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
memoryobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
metagrammar.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
methodobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
modsupport.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
moduleobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
namespaceobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
node.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
object.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
objimpl.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
odictobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
opcode.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
osdefs.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
osmodule.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
parsetok.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
patchlevel.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pgen.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pgenheaders.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyarena.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyatomic.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pycapsule.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyconfig-64.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyconfig.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyctype.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pydebug.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pydtrace.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyerrors.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyexpat.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyfpe.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pygetopt.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyhash.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pylifecycle.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pymacconfig.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pymacro.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pymath.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pymem.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pyport.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pystate.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pystrcmp.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pystrhex.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pystrtod.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
Python-ast.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
Python.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pythonrun.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pythread.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
pytime.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
py_curses.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
rangeobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
setobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
sliceobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
structmember.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
structseq.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
symtable.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
sysmodule.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
token.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
traceback.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
tupleobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
typeslots.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
ucnhash.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
unicodeobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
warnings.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📄
weakrefobject.h
|
✏️ Edit
|
✏️ Rename
|
🗑️ Delete
📤 Upload File
Upload
📁 Create Folder
Create Folder