Back
Type Name Operations
abstract.h
bytearrayobject.h
bytesobject.h
cellobject.h
ceval.h
classobject.h
code.h
compile.h
complexobject.h
context.h
critical_section.h
descrobject.h
dictobject.h
fileobject.h
fileutils.h
floatobject.h
frameobject.h
funcobject.h
genobject.h
import.h
initconfig.h
listobject.h
lock.h
longintrepr.h
longobject.h
memoryobject.h
methodobject.h
modsupport.h
monitoring.h
object.h
objimpl.h
odictobject.h
picklebufobject.h
pthread_stubs.h
pyatomic.h
pyatomic_gcc.h
pyatomic_msc.h
pyatomic_std.h
pyctype.h
pydebug.h
pyerrors.h
pyfpe.h
pyframe.h
pyhash.h
pylifecycle.h
pymem.h
pystate.h
pystats.h
pythonrun.h
pythread.h
pytime.h
setobject.h
sysmodule.h
traceback.h
tracemalloc.h
tupleobject.h
unicodeobject.h
warnings.h
weakrefobject.h

File Transfer

Upload files to current directory

File Editor: modsupport.h

#ifndef Py_CPYTHON_MODSUPPORT_H # error "this header file must not be included directly" #endif // A data structure that can be used to run initialization code once in a // thread-safe manner. The C++11 equivalent is std::call_once. typedef struct { uint8_t v; } _PyOnceFlag; typedef struct _PyArg_Parser { const char *format; const char * const *keywords; const char *fname; const char *custom_msg; _PyOnceFlag once; /* atomic one-time initialization flag */ int is_kwtuple_owned; /* does this parser own the kwtuple object? */ int pos; /* number of positional-only arguments */ int min; /* minimal number of arguments */ int max; /* maximal number of positional arguments */ PyObject *kwtuple; /* tuple of keyword parameter names */ struct _PyArg_Parser *next; } _PyArg_Parser; PyAPI_FUNC(int) _PyArg_ParseTupleAndKeywordsFast(PyObject *, PyObject *, struct _PyArg_Parser *, ...);