Skip to content

Commit 6f6a4e6

Browse files
pythongh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (pythongh-95860)
We only statically initialize for core code and builtin modules. Extension modules still create the tuple at runtime. We'll solve that part of interpreter isolation separately. This change includes generated code. The non-generated changes are in: * Tools/clinic/clinic.py * Python/getargs.c * Include/cpython/modsupport.h * Makefile.pre.in (re-generate global strings after running clinic) * very minor tweaks to Modules/_codecsmodule.c and Python/Python-tokenize.c All other changes are generated code (clinic, global strings).
1 parent bdb2cf8 commit 6f6a4e6

File tree

127 files changed

+16411
-790
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+16411
-790
lines changed

Include/cpython/modsupport.h

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ PyAPI_FUNC(PyObject **) _Py_VaBuildStack(
5151
Py_ssize_t *p_nargs);
5252

5353
typedef struct _PyArg_Parser {
54+
int initialized;
5455
const char *format;
5556
const char * const *keywords;
5657
const char *fname;

0 commit comments

Comments
 (0)