diff options
author | Steve Dower <steve.dower@microsoft.com> | 2017-09-07 18:49:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 18:49:23 (GMT) |
commit | 05f01d85257d0f3409c7335aaf0bf6a6da7eecb7 (patch) | |
tree | 32f5e8671e6f384e1ee8b3d38c45495778f45f03 /PC/config.c | |
parent | a853a8ba7850381d49b284295dd6f0dc491dbe44 (diff) | |
download | cpython-05f01d85257d0f3409c7335aaf0bf6a6da7eecb7.zip cpython-05f01d85257d0f3409c7335aaf0bf6a6da7eecb7.tar.gz cpython-05f01d85257d0f3409c7335aaf0bf6a6da7eecb7.tar.bz2 |
bpo-30389 Adds detection of VS 2017 to distutils._msvccompiler (#1632)
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/PC/config.c b/PC/config.c index f14e068..699e1d0 100644 --- a/PC/config.c +++ b/PC/config.c @@ -1,7 +1,7 @@ /* Module configuration */ /* This file contains the table of built-in modules. - See create_builtin() in import.c. */ + See create_builtin() in import.c. */ #include "Python.h" @@ -69,6 +69,7 @@ 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 -- */ @@ -161,6 +162,8 @@ struct _inittab _PyImport_Inittab[] = { {"_stat", PyInit__stat}, {"_opcode", PyInit__opcode}, + {"_findvs", PyInit__findvs}, + /* Sentinel */ {0, 0} }; |