diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-01-18 22:09:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 22:09:36 (GMT) |
commit | 2507e29a9e4e9dcac6eab46546bd3d34a69342ba (patch) | |
tree | ef70d7947b2af25233400e1496b349caf384a2b4 /PC/config.c | |
parent | fa7880604191f81cbdddc191216f7b1e39a74d8d (diff) | |
download | cpython-2507e29a9e4e9dcac6eab46546bd3d34a69342ba.zip cpython-2507e29a9e4e9dcac6eab46546bd3d34a69342ba.tar.gz cpython-2507e29a9e4e9dcac6eab46546bd3d34a69342ba.tar.bz2 |
bpo-32588: Move _findvs into its own module and add missing _queue module to installer (#5227)
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/PC/config.c b/PC/config.c index 699e1d0..91f15b5 100644 --- a/PC/config.c +++ b/PC/config.c @@ -69,7 +69,6 @@ extern PyObject* _PyWarnings_Init(void); extern PyObject* PyInit__string(void); extern PyObject* PyInit__stat(void); extern PyObject* PyInit__opcode(void); -extern PyObject* PyInit__findvs(void); /* tools/freeze/makeconfig.py marker for additional "extern" */ /* -- ADDMODULE MARKER 1 -- */ @@ -162,8 +161,6 @@ struct _inittab _PyImport_Inittab[] = { {"_stat", PyInit__stat}, {"_opcode", PyInit__opcode}, - {"_findvs", PyInit__findvs}, - /* Sentinel */ {0, 0} }; |