Skip to content

Commit 339d1f7

Browse files
author
Erlend E. Aasland
committed
Regen global objects
1 parent 841a72a commit 339d1f7

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Include/internal/pycore_global_strings.h

+7
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ struct _Py_global_strings {
205205
STRUCT_FOR_ID(_handle_fromlist)
206206
STRUCT_FOR_ID(_initializing)
207207
STRUCT_FOR_ID(_is_text_encoding)
208+
STRUCT_FOR_ID(_iterdump)
208209
STRUCT_FOR_ID(_lock_unlock_module)
209210
STRUCT_FOR_ID(_showwarnmsg)
210211
STRUCT_FOR_ID(_shutdown)
@@ -223,6 +224,7 @@ struct _Py_global_strings {
223224
STRUCT_FOR_ID(code)
224225
STRUCT_FOR_ID(copy)
225226
STRUCT_FOR_ID(copyreg)
227+
STRUCT_FOR_ID(cursor)
226228
STRUCT_FOR_ID(decode)
227229
STRUCT_FOR_ID(default)
228230
STRUCT_FOR_ID(defaultaction)
@@ -235,11 +237,15 @@ struct _Py_global_strings {
235237
STRUCT_FOR_ID(end_offset)
236238
STRUCT_FOR_ID(errors)
237239
STRUCT_FOR_ID(excepthook)
240+
STRUCT_FOR_ID(execute)
241+
STRUCT_FOR_ID(executemany)
242+
STRUCT_FOR_ID(executescript)
238243
STRUCT_FOR_ID(extend)
239244
STRUCT_FOR_ID(filename)
240245
STRUCT_FOR_ID(fileno)
241246
STRUCT_FOR_ID(fillvalue)
242247
STRUCT_FOR_ID(filters)
248+
STRUCT_FOR_ID(finalize)
243249
STRUCT_FOR_ID(find_class)
244250
STRUCT_FOR_ID(flush)
245251
STRUCT_FOR_ID(get)
@@ -310,6 +316,7 @@ struct _Py_global_strings {
310316
STRUCT_FOR_ID(threading)
311317
STRUCT_FOR_ID(throw)
312318
STRUCT_FOR_ID(unraisablehook)
319+
STRUCT_FOR_ID(upper)
313320
STRUCT_FOR_ID(values)
314321
STRUCT_FOR_ID(version)
315322
STRUCT_FOR_ID(warnings)

Include/internal/pycore_runtime_init.h

+7
Original file line numberDiff line numberDiff line change
@@ -820,6 +820,7 @@ extern "C" {
820820
INIT_ID(_handle_fromlist), \
821821
INIT_ID(_initializing), \
822822
INIT_ID(_is_text_encoding), \
823+
INIT_ID(_iterdump), \
823824
INIT_ID(_lock_unlock_module), \
824825
INIT_ID(_showwarnmsg), \
825826
INIT_ID(_shutdown), \
@@ -838,6 +839,7 @@ extern "C" {
838839
INIT_ID(code), \
839840
INIT_ID(copy), \
840841
INIT_ID(copyreg), \
842+
INIT_ID(cursor), \
841843
INIT_ID(decode), \
842844
INIT_ID(default), \
843845
INIT_ID(defaultaction), \
@@ -850,11 +852,15 @@ extern "C" {
850852
INIT_ID(end_offset), \
851853
INIT_ID(errors), \
852854
INIT_ID(excepthook), \
855+
INIT_ID(execute), \
856+
INIT_ID(executemany), \
857+
INIT_ID(executescript), \
853858
INIT_ID(extend), \
854859
INIT_ID(filename), \
855860
INIT_ID(fileno), \
856861
INIT_ID(fillvalue), \
857862
INIT_ID(filters), \
863+
INIT_ID(finalize), \
858864
INIT_ID(find_class), \
859865
INIT_ID(flush), \
860866
INIT_ID(get), \
@@ -925,6 +931,7 @@ extern "C" {
925931
INIT_ID(threading), \
926932
INIT_ID(throw), \
927933
INIT_ID(unraisablehook), \
934+
INIT_ID(upper), \
928935
INIT_ID(values), \
929936
INIT_ID(version), \
930937
INIT_ID(warnings), \

0 commit comments

Comments
 (0)