X7ROOT File Manager
Current Path:
/opt/alt/python39/include/python3.9/cpython
opt
/
alt
/
python39
/
include
/
python3.9
/
cpython
/
ðŸ“
..
📄
abstract.h
(13.87 KB)
📄
bytearrayobject.h
(769 B)
📄
bytesobject.h
(4.02 KB)
📄
ceval.h
(1.5 KB)
📄
code.h
(6.83 KB)
📄
dictobject.h
(3.71 KB)
📄
fileobject.h
(721 B)
📄
fileutils.h
(3.91 KB)
📄
frameobject.h
(2.99 KB)
📄
import.h
(1.44 KB)
📄
initconfig.h
(16.58 KB)
📄
interpreteridobject.h
(456 B)
📄
listobject.h
(1.33 KB)
📄
methodobject.h
(1.37 KB)
📄
object.h
(18.9 KB)
📄
objimpl.h
(4.35 KB)
📄
pyerrors.h
(4.98 KB)
📄
pylifecycle.h
(2.05 KB)
📄
pymem.h
(3.43 KB)
📄
pystate.h
(9.9 KB)
📄
sysmodule.h
(575 B)
📄
traceback.h
(473 B)
📄
tupleobject.h
(1.01 KB)
📄
unicodeobject.h
(45.07 KB)
Editing: methodobject.h
#ifndef Py_CPYTHON_METHODOBJECT_H # error "this header file must not be included directly" #endif PyAPI_DATA(PyTypeObject) PyCMethod_Type; #define PyCMethod_CheckExact(op) Py_IS_TYPE(op, &PyCMethod_Type) #define PyCMethod_Check(op) PyObject_TypeCheck(op, &PyCMethod_Type) /* Macros for direct access to these values. Type checks are *not* done, so use with care. */ #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) #define PyCFunction_GET_CLASS(func) \ (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_METHOD ? \ ((PyCMethodObject *)func) -> mm_class : NULL) 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 */ vectorcallfunc vectorcall; } PyCFunctionObject; typedef struct { PyCFunctionObject func; PyTypeObject *mm_class; /* Class that defines this method */ } PyCMethodObject;
Upload File
Create Folder