mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)
See https://discuss.python.org/t/pep-734-multiple-interpreters-in-the-stdlib/41147/26.
This commit is contained in:
parent
af3c1d817d
commit
03e3e31723
34 changed files with 546 additions and 539 deletions
12
PC/config.c
12
PC/config.c
|
@ -35,9 +35,9 @@ extern PyObject* PyInit__codecs(void);
|
|||
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__xxinterpqueues(void);
|
||||
extern PyObject* PyInit__interpreters(void);
|
||||
extern PyObject* PyInit__interpchannels(void);
|
||||
extern PyObject* PyInit__interpqueues(void);
|
||||
extern PyObject* PyInit__random(void);
|
||||
extern PyObject* PyInit_itertools(void);
|
||||
extern PyObject* PyInit__collections(void);
|
||||
|
@ -139,9 +139,9 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_json", PyInit__json},
|
||||
|
||||
{"xxsubtype", PyInit_xxsubtype},
|
||||
{"_xxsubinterpreters", PyInit__xxsubinterpreters},
|
||||
{"_xxinterpchannels", PyInit__xxinterpchannels},
|
||||
{"_xxinterpqueues", PyInit__xxinterpqueues},
|
||||
{"_interpreters", PyInit__interpreters},
|
||||
{"_interpchannels", PyInit__interpchannels},
|
||||
{"_interpqueues", PyInit__interpqueues},
|
||||
#ifdef _Py_HAVE_ZLIB
|
||||
{"zlib", PyInit_zlib},
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue