PATH: //proc/thread-self/root/proc/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: node.h
/* Parse tree node interface */ #ifndef Py_NODE_H #define Py_NODE_H #ifdef __cplusplus extern "C" { #endif typedef struct _node { short n_type; char *n_str; int n_lineno; int n_col_offset; int n_nchildren; struct _node *n_child; int n_end_lineno; int n_end_col_offset; } node; PyAPI_FUNC(node *) PyNode_New(int type); PyAPI_FUNC(int) PyNode_AddChild(node *n, int type, char *str, int lineno, int col_offset, int end_lineno, int end_col_offset); PyAPI_FUNC(void) PyNode_Free(node *n); #ifndef Py_LIMITED_API PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n); #endif /* Node access functions */ #define NCH(n) ((n)->n_nchildren) #define CHILD(n, i) (&(n)->n_child[i]) #define TYPE(n) ((n)->n_type) #define STR(n) ((n)->n_str) #define LINENO(n) ((n)->n_lineno) /* Assert that the type of a node is what we expect */ #define REQ(n, type) assert(TYPE(n) == (type)) PyAPI_FUNC(void) PyNode_ListTree(node *); void _PyNode_FinalizeEndPos(node *n); // helper also used in parsetok.c #ifdef __cplusplus } #endif #endif /* !Py_NODE_H */
SIMPAN PERUBAHAN