diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-12-12 17:43:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 17:43:30 (GMT) |
commit | a49b427b0265c415d9089da0be39f4b5ccd1f15f (patch) | |
tree | a7ae1247798124110a002bb5a9b088cefa66fad6 /PC | |
parent | cde141717578f22947553db776980aa3e8801353 (diff) | |
download | cpython-a49b427b0265c415d9089da0be39f4b5ccd1f15f.zip cpython-a49b427b0265c415d9089da0be39f4b5ccd1f15f.tar.gz cpython-a49b427b0265c415d9089da0be39f4b5ccd1f15f.tar.bz2 |
gh-76785: More Fixes for test.support.interpreters (gh-113012)
This brings the module (along with the associated extension modules) mostly in sync with PEP 734. There are only a few small things to wrap up.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index da2bde6..f754ce6 100644 --- a/PC/config.c +++ b/PC/config.c @@ -37,6 +37,7 @@ extern PyObject* PyInit__weakref(void); extern PyObject* PyInit_xxsubtype(void); extern PyObject* PyInit__xxsubinterpreters(void); extern PyObject* PyInit__xxinterpchannels(void); +extern PyObject* PyInit__xxinterpqueues(void); extern PyObject* PyInit__random(void); extern PyObject* PyInit_itertools(void); extern PyObject* PyInit__collections(void); @@ -142,6 +143,7 @@ struct _inittab _PyImport_Inittab[] = { {"xxsubtype", PyInit_xxsubtype}, {"_xxsubinterpreters", PyInit__xxsubinterpreters}, {"_xxinterpchannels", PyInit__xxinterpchannels}, + {"_xxinterpqueues", PyInit__xxinterpqueues}, #ifdef _Py_HAVE_ZLIB {"zlib", PyInit_zlib}, #endif |