X7ROOT File Manager
Current Path:
/opt/alt/python313/include/python3.13/cpython
opt
/
alt
/
python313
/
include
/
python3.13
/
cpython
/
ðŸ“
..
📄
abstract.h
(3.32 KB)
📄
bytearrayobject.h
(1.14 KB)
📄
bytesobject.h
(1.15 KB)
📄
cellobject.h
(1.05 KB)
📄
ceval.h
(1.09 KB)
📄
classobject.h
(2.19 KB)
📄
code.h
(14.85 KB)
📄
compile.h
(2.07 KB)
📄
complexobject.h
(909 B)
📄
context.h
(1.79 KB)
📄
critical_section.h
(5.46 KB)
📄
descrobject.h
(1.56 KB)
📄
dictobject.h
(3.78 KB)
📄
fileobject.h
(652 B)
📄
fileutils.h
(232 B)
📄
floatobject.h
(900 B)
📄
frameobject.h
(1.17 KB)
📄
funcobject.h
(6.88 KB)
📄
genobject.h
(2.93 KB)
📄
import.h
(725 B)
📄
initconfig.h
(8 KB)
📄
listobject.h
(1.76 KB)
📄
lock.h
(1.72 KB)
📄
longintrepr.h
(5 KB)
📄
longobject.h
(5.45 KB)
📄
memoryobject.h
(2.17 KB)
📄
methodobject.h
(2.22 KB)
📄
modsupport.h
(1.02 KB)
📄
monitoring.h
(7.52 KB)
📄
object.h
(18.63 KB)
📄
objimpl.h
(3.73 KB)
📄
odictobject.h
(1.28 KB)
📄
picklebufobject.h
(848 B)
📄
pthread_stubs.h
(3.83 KB)
📄
pyatomic.h
(16.12 KB)
📄
pyatomic_gcc.h
(18.68 KB)
📄
pyatomic_msc.h
(28.56 KB)
📄
pyatomic_std.h
(23.77 KB)
📄
pyctype.h
(1.35 KB)
📄
pydebug.h
(1.38 KB)
📄
pyerrors.h
(2.84 KB)
📄
pyfpe.h
(444 B)
📄
pyframe.h
(1.9 KB)
📄
pyhash.h
(1.35 KB)
📄
pylifecycle.h
(2.75 KB)
📄
pymem.h
(2.78 KB)
📄
pystate.h
(9.24 KB)
📄
pystats.h
(5.31 KB)
📄
pythonrun.h
(4.23 KB)
📄
pythread.h
(1.47 KB)
📄
pytime.h
(707 B)
📄
setobject.h
(2 KB)
📄
sysmodule.h
(775 B)
📄
traceback.h
(282 B)
📄
tracemalloc.h
(823 B)
📄
tupleobject.h
(1.3 KB)
📄
unicodeobject.h
(24.49 KB)
📄
warnings.h
(564 B)
📄
weakrefobject.h
(2.2 KB)
Editing: abstract.h
#ifndef Py_CPYTHON_ABSTRACTOBJECT_H # error "this header file must not be included directly" #endif /* === Object Protocol ================================================== */ /* Like PyObject_CallMethod(), but expect a _Py_Identifier* as the method name. */ PyAPI_FUNC(PyObject*) _PyObject_CallMethodId( PyObject *obj, _Py_Identifier *name, const char *format, ...); /* Convert keyword arguments from the FASTCALL (stack: C array, kwnames: tuple) format to a Python dictionary ("kwargs" dict). The type of kwnames keys is not checked. The final function getting arguments is responsible to check if all keys are strings, for example using PyArg_ParseTupleAndKeywords() or PyArg_ValidateKeywordArguments(). Duplicate keys are merged using the last value. If duplicate keys must raise an exception, the caller is responsible to implement an explicit keys on kwnames. */ PyAPI_FUNC(PyObject*) _PyStack_AsDict(PyObject *const *values, PyObject *kwnames); /* === Vectorcall protocol (PEP 590) ============================= */ // PyVectorcall_NARGS() is exported as a function for the stable ABI. // Here (when we are not using the stable ABI), the name is overridden to // call a static inline function for best performance. static inline Py_ssize_t _PyVectorcall_NARGS(size_t n) { return n & ~PY_VECTORCALL_ARGUMENTS_OFFSET; } #define PyVectorcall_NARGS(n) _PyVectorcall_NARGS(n) PyAPI_FUNC(vectorcallfunc) PyVectorcall_Function(PyObject *callable); // Backwards compatibility aliases (PEP 590) for API that was provisional // in Python 3.8 #define _PyObject_Vectorcall PyObject_Vectorcall #define _PyObject_VectorcallMethod PyObject_VectorcallMethod #define _PyObject_FastCallDict PyObject_VectorcallDict #define _PyVectorcall_Function PyVectorcall_Function #define _PyObject_CallOneArg PyObject_CallOneArg #define _PyObject_CallMethodNoArgs PyObject_CallMethodNoArgs #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg /* Same as PyObject_Vectorcall except that keyword arguments are passed as dict, which may be NULL if there are no keyword arguments. */ PyAPI_FUNC(PyObject *) PyObject_VectorcallDict( PyObject *callable, PyObject *const *args, size_t nargsf, PyObject *kwargs); PyAPI_FUNC(PyObject *) PyObject_CallOneArg(PyObject *func, PyObject *arg); static inline PyObject * PyObject_CallMethodNoArgs(PyObject *self, PyObject *name) { size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET; return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL); } static inline PyObject * PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) { PyObject *args[2] = {self, arg}; size_t nargsf = 2 | PY_VECTORCALL_ARGUMENTS_OFFSET; assert(arg != NULL); return PyObject_VectorcallMethod(name, args, nargsf, _Py_NULL); } /* Guess the size of object 'o' using len(o) or o.__length_hint__(). If neither of those return a non-negative value, then return the default value. If one of the calls fails, this function returns -1. */ PyAPI_FUNC(Py_ssize_t) PyObject_LengthHint(PyObject *o, Py_ssize_t); /* === Sequence protocol ================================================ */ /* Assume tp_as_sequence and sq_item exist and that 'i' does not need to be corrected for a negative index. */ #define PySequence_ITEM(o, i)\ ( Py_TYPE(o)->tp_as_sequence->sq_item((o), (i)) )
Upload File
Create Folder