summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2018-05-15 09:56:18 -0400
committerGitHub <noreply@github.com>2018-05-15 09:56:18 -0400
commit6bd0c476c58ca0046969f70dc2a4e4dfb3268062 (patch)
tree0d03c95e5426fc5912d836443a93c7ecf5641851 /PC
parent5c7e079158db869c9ede1ac9b5b9735091d3ffb6 (diff)
downloadcpython-git-6bd0c476c58ca0046969f70dc2a4e4dfb3268062.tar.gz
bpo-32604: Remove xid registry. (#6813)
Remove the interpreters testing helper (and xid registry).
Diffstat (limited to 'PC')
-rw-r--r--PC/config.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/PC/config.c b/PC/config.c
index 568a0fa9a4..2037b3db64 100644
--- a/PC/config.c
+++ b/PC/config.c
@@ -32,9 +32,8 @@ extern PyObject* PyInit__locale(void);
#endif
extern PyObject* PyInit__codecs(void);
extern PyObject* PyInit__weakref(void);
-/* XXX: These two should really be extracted to standalone extensions. */
+/* XXX: This one should really be extracted to standalone extension. */
extern PyObject* PyInit_xxsubtype(void);
-extern PyObject* PyInit__xxsubinterpreters(void);
extern PyObject* PyInit_zipimport(void);
extern PyObject* PyInit__random(void);
extern PyObject* PyInit_itertools(void);
@@ -130,7 +129,6 @@ struct _inittab _PyImport_Inittab[] = {
{"_json", PyInit__json},
{"xxsubtype", PyInit_xxsubtype},
- {"_xxsubinterpreters", PyInit__xxsubinterpreters},
{"zipimport", PyInit_zipimport},
#ifdef _Py_HAVE_ZLIB
{"zlib", PyInit_zlib},