PATH: //proc/thread-self/root/proc/self/root/opt/alt/python312/include/python3.12/internal
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 pycore_abstract.h
↓
X
📄 pycore_asdl.h
↓
X
📄 pycore_ast.h
↓
X
📄 pycore_ast_state.h
↓
X
📄 pycore_atexit.h
↓
X
📄 pycore_atomic.h
↓
X
📄 pycore_atomic_funcs.h
↓
X
📄 pycore_bitutils.h
↓
X
📄 pycore_blocks_output_buffer.h
↓
X
📄 pycore_bytes_methods.h
↓
X
📄 pycore_bytesobject.h
↓
X
📄 pycore_call.h
↓
X
📄 pycore_ceval.h
↓
X
📄 pycore_ceval_state.h
↓
X
📄 pycore_code.h
↓
X
📄 pycore_compile.h
↓
X
📄 pycore_condvar.h
↓
X
📄 pycore_context.h
↓
X
📄 pycore_descrobject.h
↓
X
📄 pycore_dict.h
↓
X
📄 pycore_dict_state.h
↓
X
📄 pycore_dtoa.h
↓
X
📄 pycore_emscripten_signal.h
↓
X
📄 pycore_exceptions.h
↓
X
📄 pycore_faulthandler.h
↓
X
📄 pycore_fileutils.h
↓
X
📄 pycore_fileutils_windows.h
↓
X
📄 pycore_floatobject.h
↓
X
📄 pycore_flowgraph.h
↓
X
📄 pycore_format.h
↓
X
📄 pycore_frame.h
↓
X
📄 pycore_function.h
↓
X
📄 pycore_gc.h
↓
X
📄 pycore_genobject.h
↓
X
📄 pycore_getopt.h
↓
X
📄 pycore_gil.h
↓
X
📄 pycore_global_objects.h
↓
X
📄 pycore_global_objects_fini_generated.h
↓
X
📄 pycore_global_strings.h
↓
X
📄 pycore_hamt.h
↓
X
📄 pycore_hashtable.h
↓
X
📄 pycore_import.h
↓
X
📄 pycore_initconfig.h
↓
X
📄 pycore_instruments.h
↓
X
📄 pycore_interp.h
↓
X
📄 pycore_intrinsics.h
↓
X
📄 pycore_list.h
↓
X
📄 pycore_long.h
↓
X
📄 pycore_memoryobject.h
↓
X
📄 pycore_moduleobject.h
↓
X
📄 pycore_namespace.h
↓
X
📄 pycore_object.h
↓
X
📄 pycore_object_state.h
↓
X
📄 pycore_obmalloc.h
↓
X
📄 pycore_obmalloc_init.h
↓
X
📄 pycore_opcode.h
↓
X
📄 pycore_opcode_utils.h
↓
X
📄 pycore_parser.h
↓
X
📄 pycore_pathconfig.h
↓
X
📄 pycore_pyarena.h
↓
X
📄 pycore_pyerrors.h
↓
X
📄 pycore_pyhash.h
↓
X
📄 pycore_pylifecycle.h
↓
X
📄 pycore_pymath.h
↓
X
📄 pycore_pymem.h
↓
X
📄 pycore_pymem_init.h
↓
X
📄 pycore_pystate.h
↓
X
📄 pycore_pythread.h
↓
X
📄 pycore_range.h
↓
X
📄 pycore_runtime.h
↓
X
📄 pycore_runtime_init.h
↓
X
📄 pycore_runtime_init_generated.h
↓
X
📄 pycore_signal.h
↓
X
📄 pycore_sliceobject.h
↓
X
📄 pycore_strhex.h
↓
X
📄 pycore_structseq.h
↓
X
📄 pycore_symtable.h
↓
X
📄 pycore_sysmodule.h
↓
X
📄 pycore_time.h
↓
X
📄 pycore_token.h
↓
X
📄 pycore_traceback.h
↓
X
📄 pycore_tracemalloc.h
↓
X
📄 pycore_tuple.h
↓
X
📄 pycore_typeobject.h
↓
X
📄 pycore_typevarobject.h
↓
X
📄 pycore_ucnhash.h
↓
X
📄 pycore_unicodeobject.h
↓
X
📄 pycore_unicodeobject_generated.h
↓
X
📄 pycore_unionobject.h
↓
X
📄 pycore_warnings.h
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: pycore_list.h
#ifndef Py_INTERNAL_LIST_H #define Py_INTERNAL_LIST_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "listobject.h" // _PyList_CAST() /* runtime lifecycle */ extern void _PyList_Fini(PyInterpreterState *); /* other API */ #ifndef WITH_FREELISTS // without freelists # define PyList_MAXFREELIST 0 #endif /* Empty list reuse scheme to save calls to malloc and free */ #ifndef PyList_MAXFREELIST # define PyList_MAXFREELIST 80 #endif struct _Py_list_state { #if PyList_MAXFREELIST > 0 PyListObject *free_list[PyList_MAXFREELIST]; int numfree; #endif }; #define _PyList_ITEMS(op) _Py_RVALUE(_PyList_CAST(op)->ob_item) extern int _PyList_AppendTakeRefListResize(PyListObject *self, PyObject *newitem); static inline int _PyList_AppendTakeRef(PyListObject *self, PyObject *newitem) { assert(self != NULL && newitem != NULL); assert(PyList_Check(self)); Py_ssize_t len = PyList_GET_SIZE(self); Py_ssize_t allocated = self->allocated; assert((size_t)len + 1 < PY_SSIZE_T_MAX); if (allocated > len) { PyList_SET_ITEM(self, len, newitem); Py_SET_SIZE(self, len + 1); return 0; } return _PyList_AppendTakeRefListResize(self, newitem); } // Repeat the bytes of a buffer in place static inline void _Py_memory_repeat(char* dest, Py_ssize_t len_dest, Py_ssize_t len_src) { assert(len_src > 0); Py_ssize_t copied = len_src; while (copied < len_dest) { Py_ssize_t bytes_to_copy = Py_MIN(copied, len_dest - copied); memcpy(dest + copied, dest, bytes_to_copy); copied += bytes_to_copy; } } typedef struct { PyObject_HEAD Py_ssize_t it_index; PyListObject *it_seq; /* Set to NULL when iterator is exhausted */ } _PyListIterObject; extern PyObject *_PyList_FromArraySteal(PyObject *const *src, Py_ssize_t n); #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_LIST_H */
SIMPAN PERUBAHAN