File indexing completed on 2025-11-19 09:50:41
0001 #ifndef Py_CPYTHON_MODSUPPORT_H
0002 # error "this header file must not be included directly"
0003 #endif
0004
0005
0006
0007 typedef struct {
0008 uint8_t v;
0009 } _PyOnceFlag;
0010
0011 typedef struct _PyArg_Parser {
0012 const char *format;
0013 const char * const *keywords;
0014 const char *fname;
0015 const char *custom_msg;
0016 _PyOnceFlag once;
0017 int is_kwtuple_owned;
0018 int pos;
0019 int min;
0020 int max;
0021 PyObject *kwtuple;
0022 struct _PyArg_Parser *next;
0023 } _PyArg_Parser;
0024
0025 PyAPI_FUNC(int) _PyArg_ParseTupleAndKeywordsFast(PyObject *, PyObject *,
0026 struct _PyArg_Parser *, ...);