X7ROOT File Manager
Current Path:
/opt/alt/python311/include/python3.11
opt
/
alt
/
python311
/
include
/
python3.11
/
ðŸ“
..
📄
Python.h
(2.79 KB)
📄
abstract.h
(30.67 KB)
📄
bltinmodule.h
(264 B)
📄
boolobject.h
(1.18 KB)
📄
bytearrayobject.h
(1.43 KB)
📄
bytesobject.h
(2.56 KB)
📄
ceval.h
(6.11 KB)
📄
codecs.h
(6.91 KB)
📄
compile.h
(520 B)
📄
complexobject.h
(724 B)
ðŸ“
cpython
📄
datetime.h
(9.41 KB)
📄
descrobject.h
(1.23 KB)
📄
dictobject.h
(3.76 KB)
📄
dynamic_annotations.h
(21.94 KB)
📄
enumobject.h
(253 B)
📄
errcode.h
(1.74 KB)
📄
exports.h
(1.07 KB)
📄
fileobject.h
(1.53 KB)
📄
fileutils.h
(507 B)
📄
floatobject.h
(1.49 KB)
📄
frameobject.h
(336 B)
📄
genericaliasobject.h
(334 B)
📄
import.h
(2.95 KB)
ðŸ“
internal
📄
intrcheck.h
(772 B)
📄
iterobject.h
(593 B)
📄
listobject.h
(1.74 KB)
📄
longobject.h
(3.65 KB)
📄
marshal.h
(827 B)
📄
memoryobject.h
(2.74 KB)
📄
methodobject.h
(4.95 KB)
📄
modsupport.h
(6.39 KB)
📄
moduleobject.h
(2.32 KB)
📄
object.h
(29.1 KB)
📄
objimpl.h
(8.23 KB)
📄
opcode.h
(10.92 KB)
📄
osdefs.h
(737 B)
📄
osmodule.h
(291 B)
📄
patchlevel.h
(1.27 KB)
📄
py_curses.h
(2.41 KB)
📄
pybuffer.h
(5 KB)
📄
pycapsule.h
(1.68 KB)
📄
pyconfig-64.h
(51.96 KB)
📄
pyconfig.h
(162 B)
📄
pydtrace.h
(2.36 KB)
📄
pyerrors.h
(12.48 KB)
📄
pyexpat.h
(2.51 KB)
📄
pyframe.h
(551 B)
📄
pyhash.h
(4.06 KB)
📄
pylifecycle.h
(2.2 KB)
📄
pymacconfig.h
(2.92 KB)
📄
pymacro.h
(5.92 KB)
📄
pymath.h
(1.93 KB)
📄
pymem.h
(3.8 KB)
📄
pyport.h
(23.88 KB)
📄
pystate.h
(4.53 KB)
📄
pystrcmp.h
(436 B)
📄
pystrtod.h
(1.52 KB)
📄
pythonrun.h
(1.16 KB)
📄
pythread.h
(4.72 KB)
📄
pytypedefs.h
(851 B)
📄
rangeobject.h
(628 B)
📄
setobject.h
(1.51 KB)
📄
sliceobject.h
(2.46 KB)
📄
structmember.h
(1.99 KB)
📄
structseq.h
(1.36 KB)
📄
sysmodule.h
(1.35 KB)
📄
token.h
(2.61 KB)
📄
traceback.h
(583 B)
📄
tracemalloc.h
(1.09 KB)
📄
tupleobject.h
(1.58 KB)
📄
typeslots.h
(2.29 KB)
📄
unicodeobject.h
(35.19 KB)
📄
warnings.h
(1.1 KB)
📄
weakrefobject.h
(1.2 KB)
Editing: pyexpat.h
/* Stuff to export relevant 'expat' entry points from pyexpat to other * parser modules, such as cElementTree. */ /* note: you must import expat.h before importing this module! */ #define PyExpat_CAPI_MAGIC "pyexpat.expat_CAPI 1.1" #define PyExpat_CAPSULE_NAME "pyexpat.expat_CAPI" struct PyExpat_CAPI { char* magic; /* set to PyExpat_CAPI_MAGIC */ int size; /* set to sizeof(struct PyExpat_CAPI) */ int MAJOR_VERSION; int MINOR_VERSION; int MICRO_VERSION; /* pointers to selected expat functions. add new functions at the end, if needed */ const XML_LChar * (*ErrorString)(enum XML_Error code); enum XML_Error (*GetErrorCode)(XML_Parser parser); XML_Size (*GetErrorColumnNumber)(XML_Parser parser); XML_Size (*GetErrorLineNumber)(XML_Parser parser); enum XML_Status (*Parse)( XML_Parser parser, const char *s, int len, int isFinal); XML_Parser (*ParserCreate_MM)( const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *namespaceSeparator); void (*ParserFree)(XML_Parser parser); void (*SetCharacterDataHandler)( XML_Parser parser, XML_CharacterDataHandler handler); void (*SetCommentHandler)( XML_Parser parser, XML_CommentHandler handler); void (*SetDefaultHandlerExpand)( XML_Parser parser, XML_DefaultHandler handler); void (*SetElementHandler)( XML_Parser parser, XML_StartElementHandler start, XML_EndElementHandler end); void (*SetNamespaceDeclHandler)( XML_Parser parser, XML_StartNamespaceDeclHandler start, XML_EndNamespaceDeclHandler end); void (*SetProcessingInstructionHandler)( XML_Parser parser, XML_ProcessingInstructionHandler handler); void (*SetUnknownEncodingHandler)( XML_Parser parser, XML_UnknownEncodingHandler handler, void *encodingHandlerData); void (*SetUserData)(XML_Parser parser, void *userData); void (*SetStartDoctypeDeclHandler)(XML_Parser parser, XML_StartDoctypeDeclHandler start); enum XML_Status (*SetEncoding)(XML_Parser parser, const XML_Char *encoding); int (*DefaultUnknownEncodingHandler)( void *encodingHandlerData, const XML_Char *name, XML_Encoding *info); /* might be NULL for expat < 2.1.0 */ int (*SetHashSalt)(XML_Parser parser, unsigned long hash_salt); /* might be NULL for expat < 2.6.0 */ XML_Bool (*SetReparseDeferralEnabled)(XML_Parser parser, XML_Bool enabled); /* always add new stuff to the end! */ };
Upload File
Create Folder