bpo-34691: Compile _contextvars module into main Python library (GH-11741)

This commit is contained in:
Steve Dower 2019-02-02 14:36:23 -08:00 committed by GitHub
parent b82bfac436
commit 4c70d9f79c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 95 deletions

View file

@ -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}
};