mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
bpo-34691: Compile _contextvars module into main Python library (GH-11741)
This commit is contained in:
parent
b82bfac436
commit
4c70d9f79c
6 changed files with 8 additions and 95 deletions
|
|
@ -72,6 +72,8 @@ extern PyObject* PyInit__string(void);
|
|||
extern PyObject* PyInit__stat(void);
|
||||
extern PyObject* PyInit__opcode(void);
|
||||
|
||||
extern PyObject* PyInit__contextvars(void);
|
||||
|
||||
/* tools/freeze/makeconfig.py marker for additional "extern" */
|
||||
/* -- ADDMODULE MARKER 1 -- */
|
||||
|
||||
|
|
@ -164,6 +166,8 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_stat", PyInit__stat},
|
||||
{"_opcode", PyInit__opcode},
|
||||
|
||||
{"_contextvars", PyInit__contextvars},
|
||||
|
||||
/* Sentinel */
|
||||
{0, 0}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue