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: dictobject.h
#ifndef Py_DICTOBJECT_H #define Py_DICTOBJECT_H #ifdef __cplusplus extern "C" { #endif /* Dictionary object type -- mapping from hashable object to object */ /* The distribution includes a separate file, Objects/dictnotes.txt, describing explorations into dictionary design and optimization. It covers typical dictionary use patterns, the parameters for tuning dictionaries, and several ideas for possible optimizations. */ PyAPI_DATA(PyTypeObject) PyDict_Type; #define PyDict_Check(op) \ PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS) #define PyDict_CheckExact(op) Py_IS_TYPE(op, &PyDict_Type) PyAPI_FUNC(PyObject *) PyDict_New(void); PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key); PyAPI_FUNC(PyObject *) PyDict_GetItemWithError(PyObject *mp, PyObject *key); PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item); PyAPI_FUNC(int) PyDict_DelItem(PyObject *mp, PyObject *key); PyAPI_FUNC(void) PyDict_Clear(PyObject *mp); PyAPI_FUNC(int) PyDict_Next( PyObject *mp, Py_ssize_t *pos, PyObject **key, PyObject **value); PyAPI_FUNC(PyObject *) PyDict_Keys(PyObject *mp); PyAPI_FUNC(PyObject *) PyDict_Values(PyObject *mp); PyAPI_FUNC(PyObject *) PyDict_Items(PyObject *mp); PyAPI_FUNC(Py_ssize_t) PyDict_Size(PyObject *mp); PyAPI_FUNC(PyObject *) PyDict_Copy(PyObject *mp); PyAPI_FUNC(int) PyDict_Contains(PyObject *mp, PyObject *key); /* PyDict_Update(mp, other) is equivalent to PyDict_Merge(mp, other, 1). */ PyAPI_FUNC(int) PyDict_Update(PyObject *mp, PyObject *other); /* PyDict_Merge updates/merges from a mapping object (an object that supports PyMapping_Keys() and PyObject_GetItem()). If override is true, the last occurrence of a key wins, else the first. The Python dict.update(other) is equivalent to PyDict_Merge(dict, other, 1). */ PyAPI_FUNC(int) PyDict_Merge(PyObject *mp, PyObject *other, int override); /* PyDict_MergeFromSeq2 updates/merges from an iterable object producing iterable objects of length 2. If override is true, the last occurrence of a key wins, else the first. The Python dict constructor dict(seq2) is equivalent to dict={}; PyDict_MergeFromSeq(dict, seq2, 1). */ PyAPI_FUNC(int) PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override); PyAPI_FUNC(PyObject *) PyDict_GetItemString(PyObject *dp, const char *key); PyAPI_FUNC(int) PyDict_SetItemString(PyObject *dp, const char *key, PyObject *item); PyAPI_FUNC(int) PyDict_DelItemString(PyObject *dp, const char *key); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000 PyAPI_FUNC(PyObject *) PyObject_GenericGetDict(PyObject *, void *); #endif /* Dictionary (keys, values, items) views */ PyAPI_DATA(PyTypeObject) PyDictKeys_Type; PyAPI_DATA(PyTypeObject) PyDictValues_Type; PyAPI_DATA(PyTypeObject) PyDictItems_Type; #define PyDictKeys_Check(op) PyObject_TypeCheck(op, &PyDictKeys_Type) #define PyDictValues_Check(op) PyObject_TypeCheck(op, &PyDictValues_Type) #define PyDictItems_Check(op) PyObject_TypeCheck(op, &PyDictItems_Type) /* This excludes Values, since they are not sets. */ # define PyDictViewSet_Check(op) \ (PyDictKeys_Check(op) || PyDictItems_Check(op)) /* Dictionary (key, value, items) iterators */ PyAPI_DATA(PyTypeObject) PyDictIterKey_Type; PyAPI_DATA(PyTypeObject) PyDictIterValue_Type; PyAPI_DATA(PyTypeObject) PyDictIterItem_Type; PyAPI_DATA(PyTypeObject) PyDictRevIterKey_Type; PyAPI_DATA(PyTypeObject) PyDictRevIterItem_Type; PyAPI_DATA(PyTypeObject) PyDictRevIterValue_Type; #ifndef Py_LIMITED_API # define Py_CPYTHON_DICTOBJECT_H # include "cpython/dictobject.h" # undef Py_CPYTHON_DICTOBJECT_H #endif #ifdef __cplusplus } #endif #endif /* !Py_DICTOBJECT_H */
Upload File
Create Folder