X7ROOT File Manager
Current Path:
/opt/alt/python312/include/python3.12/cpython
opt
/
alt
/
python312
/
include
/
python3.12
/
cpython
/
ðŸ“
..
📄
abstract.h
(7.69 KB)
📄
bytearrayobject.h
(1.14 KB)
📄
bytesobject.h
(4.32 KB)
📄
cellobject.h
(1.05 KB)
📄
ceval.h
(1.61 KB)
📄
classobject.h
(2.19 KB)
📄
code.h
(15.81 KB)
📄
compile.h
(2.6 KB)
📄
complexobject.h
(1.22 KB)
📄
context.h
(1.92 KB)
📄
descrobject.h
(1.6 KB)
📄
dictobject.h
(4.58 KB)
📄
fileobject.h
(818 B)
📄
fileutils.h
(232 B)
📄
floatobject.h
(900 B)
📄
frameobject.h
(1.08 KB)
📄
funcobject.h
(7.02 KB)
📄
genobject.h
(3.24 KB)
📄
import.h
(1.58 KB)
📄
initconfig.h
(7.64 KB)
📄
interpreteridobject.h
(387 B)
📄
listobject.h
(1.59 KB)
📄
longintrepr.h
(4.77 KB)
📄
longobject.h
(4.57 KB)
📄
memoryobject.h
(2.22 KB)
📄
methodobject.h
(2.22 KB)
📄
modsupport.h
(4.23 KB)
📄
object.h
(20.71 KB)
📄
objimpl.h
(3.24 KB)
📄
odictobject.h
(1.28 KB)
📄
picklebufobject.h
(848 B)
📄
pthread_stubs.h
(3.42 KB)
📄
pyctype.h
(1.35 KB)
📄
pydebug.h
(1.38 KB)
📄
pyerrors.h
(4.18 KB)
📄
pyfpe.h
(444 B)
📄
pyframe.h
(1.44 KB)
📄
pylifecycle.h
(3.34 KB)
📄
pymem.h
(3.3 KB)
📄
pystate.h
(16.82 KB)
📄
pythonrun.h
(4.79 KB)
📄
pythread.h
(1.38 KB)
📄
pytime.h
(12.11 KB)
📄
setobject.h
(2.1 KB)
📄
sysmodule.h
(489 B)
📄
traceback.h
(444 B)
📄
tupleobject.h
(1.34 KB)
📄
unicodeobject.h
(33.66 KB)
📄
warnings.h
(564 B)
📄
weakrefobject.h
(1.98 KB)
Editing: compile.h
#ifndef Py_CPYTHON_COMPILE_H # error "this header file must not be included directly" #endif /* Public interface */ #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \ CO_FUTURE_WITH_STATEMENT | CO_FUTURE_PRINT_FUNCTION | \ CO_FUTURE_UNICODE_LITERALS | CO_FUTURE_BARRY_AS_BDFL | \ CO_FUTURE_GENERATOR_STOP | CO_FUTURE_ANNOTATIONS) #define PyCF_MASK_OBSOLETE (CO_NESTED) /* bpo-39562: CO_FUTURE_ and PyCF_ constants must be kept unique. PyCF_ constants can use bits from 0x0100 to 0x10000. CO_FUTURE_ constants use bits starting at 0x20000. */ #define PyCF_SOURCE_IS_UTF8 0x0100 #define PyCF_DONT_IMPLY_DEDENT 0x0200 #define PyCF_ONLY_AST 0x0400 #define PyCF_IGNORE_COOKIE 0x0800 #define PyCF_TYPE_COMMENTS 0x1000 #define PyCF_ALLOW_TOP_LEVEL_AWAIT 0x2000 #define PyCF_ALLOW_INCOMPLETE_INPUT 0x4000 #define PyCF_COMPILE_MASK (PyCF_ONLY_AST | PyCF_ALLOW_TOP_LEVEL_AWAIT | \ PyCF_TYPE_COMMENTS | PyCF_DONT_IMPLY_DEDENT | \ PyCF_ALLOW_INCOMPLETE_INPUT) typedef struct { int cf_flags; /* bitmask of CO_xxx flags relevant to future */ int cf_feature_version; /* minor Python version (PyCF_ONLY_AST) */ } PyCompilerFlags; #define _PyCompilerFlags_INIT \ (PyCompilerFlags){.cf_flags = 0, .cf_feature_version = PY_MINOR_VERSION} /* source location information */ typedef struct { int lineno; int end_lineno; int col_offset; int end_col_offset; } _PyCompilerSrcLocation; #define SRC_LOCATION_FROM_AST(n) \ (_PyCompilerSrcLocation){ \ .lineno = (n)->lineno, \ .end_lineno = (n)->end_lineno, \ .col_offset = (n)->col_offset, \ .end_col_offset = (n)->end_col_offset } /* Future feature support */ typedef struct { int ff_features; /* flags set by future statements */ _PyCompilerSrcLocation ff_location; /* location of last future statement */ } PyFutureFeatures; #define FUTURE_NESTED_SCOPES "nested_scopes" #define FUTURE_GENERATORS "generators" #define FUTURE_DIVISION "division" #define FUTURE_ABSOLUTE_IMPORT "absolute_import" #define FUTURE_WITH_STATEMENT "with_statement" #define FUTURE_PRINT_FUNCTION "print_function" #define FUTURE_UNICODE_LITERALS "unicode_literals" #define FUTURE_BARRY_AS_BDFL "barry_as_FLUFL" #define FUTURE_GENERATOR_STOP "generator_stop" #define FUTURE_ANNOTATIONS "annotations" #define PY_INVALID_STACK_EFFECT INT_MAX PyAPI_FUNC(int) PyCompile_OpcodeStackEffect(int opcode, int oparg); PyAPI_FUNC(int) PyCompile_OpcodeStackEffectWithJump(int opcode, int oparg, int jump);
Upload File
Create Folder