diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-02-04 01:14:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-04 01:14:43 (GMT) |
commit | c67b00534abfeca83016a00818cf1fd949613d6b (patch) | |
tree | 8e85847abe633ad261150d6885be199c036c0714 /PC | |
parent | d4c410f0f922683f38c9d435923939d037fbd8c2 (diff) | |
download | cpython-c67b00534abfeca83016a00818cf1fd949613d6b.zip cpython-c67b00534abfeca83016a00818cf1fd949613d6b.tar.gz cpython-c67b00534abfeca83016a00818cf1fd949613d6b.tar.bz2 |
gh-101524: Split Up the _xxsubinterpreters Module (gh-101526)
This is step 1 in potentially dropping all the "channel"-related code. Channels have already been removed from PEP 554.
https://github.com/python/cpython/issues/101524
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 9d900c7..cdb5db2 100644 --- a/PC/config.c +++ b/PC/config.c @@ -37,6 +37,7 @@ extern PyObject* PyInit__weakref(void); /* XXX: These two should really be extracted to standalone extensions. */ extern PyObject* PyInit_xxsubtype(void); extern PyObject* PyInit__xxsubinterpreters(void); +extern PyObject* PyInit__xxinterpchannels(void); extern PyObject* PyInit__random(void); extern PyObject* PyInit_itertools(void); extern PyObject* PyInit__collections(void); @@ -134,6 +135,7 @@ struct _inittab _PyImport_Inittab[] = { {"xxsubtype", PyInit_xxsubtype}, {"_xxsubinterpreters", PyInit__xxsubinterpreters}, + {"_xxinterpchannels", PyInit__xxinterpchannels}, #ifdef _Py_HAVE_ZLIB {"zlib", PyInit_zlib}, #endif |