PATH: //proc/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_instruments.h
#ifndef Py_INTERNAL_INSTRUMENT_H #define Py_INTERNAL_INSTRUMENT_H #include "pycore_bitutils.h" // _Py_popcount32 #include "pycore_frame.h" #include "cpython/code.h" #ifdef __cplusplus extern "C" { #endif #define PY_MONITORING_TOOL_IDS 8 /* Local events. * These require bytecode instrumentation */ #define PY_MONITORING_EVENT_PY_START 0 #define PY_MONITORING_EVENT_PY_RESUME 1 #define PY_MONITORING_EVENT_PY_RETURN 2 #define PY_MONITORING_EVENT_PY_YIELD 3 #define PY_MONITORING_EVENT_CALL 4 #define PY_MONITORING_EVENT_LINE 5 #define PY_MONITORING_EVENT_INSTRUCTION 6 #define PY_MONITORING_EVENT_JUMP 7 #define PY_MONITORING_EVENT_BRANCH 8 #define PY_MONITORING_EVENT_STOP_ITERATION 9 #define PY_MONITORING_IS_INSTRUMENTED_EVENT(ev) \ ((ev) < _PY_MONITORING_LOCAL_EVENTS) /* Other events, mainly exceptions */ #define PY_MONITORING_EVENT_RAISE 10 #define PY_MONITORING_EVENT_EXCEPTION_HANDLED 11 #define PY_MONITORING_EVENT_PY_UNWIND 12 #define PY_MONITORING_EVENT_PY_THROW 13 #define PY_MONITORING_EVENT_RERAISE 14 /* Ancillary events */ #define PY_MONITORING_EVENT_C_RETURN 15 #define PY_MONITORING_EVENT_C_RAISE 16 typedef uint32_t _PyMonitoringEventSet; /* Tool IDs */ /* These are defined in PEP 669 for convenience to avoid clashes */ #define PY_MONITORING_DEBUGGER_ID 0 #define PY_MONITORING_COVERAGE_ID 1 #define PY_MONITORING_PROFILER_ID 2 #define PY_MONITORING_OPTIMIZER_ID 5 /* Internal IDs used to suuport sys.setprofile() and sys.settrace() */ #define PY_MONITORING_SYS_PROFILE_ID 6 #define PY_MONITORING_SYS_TRACE_ID 7 PyObject *_PyMonitoring_RegisterCallback(int tool_id, int event_id, PyObject *obj); int _PyMonitoring_SetEvents(int tool_id, _PyMonitoringEventSet events); extern int _Py_call_instrumentation(PyThreadState *tstate, int event, _PyInterpreterFrame *frame, _Py_CODEUNIT *instr); extern int _Py_call_instrumentation_line(PyThreadState *tstate, _PyInterpreterFrame* frame, _Py_CODEUNIT *instr, _Py_CODEUNIT *prev); extern int _Py_call_instrumentation_instruction( PyThreadState *tstate, _PyInterpreterFrame* frame, _Py_CODEUNIT *instr); _Py_CODEUNIT * _Py_call_instrumentation_jump( PyThreadState *tstate, int event, _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, _Py_CODEUNIT *target); extern int _Py_call_instrumentation_arg(PyThreadState *tstate, int event, _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, PyObject *arg); extern int _Py_call_instrumentation_2args(PyThreadState *tstate, int event, _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, PyObject *arg0, PyObject *arg1); extern void _Py_call_instrumentation_exc2(PyThreadState *tstate, int event, _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, PyObject *arg0, PyObject *arg1); extern int _Py_Instrumentation_GetLine(PyCodeObject *code, int index); extern PyObject _PyInstrumentation_MISSING; extern PyObject _PyInstrumentation_DISABLE; #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_INSTRUMENT_H */
SIMPAN PERUBAHAN