diff options
author | Steve Dower <steve.dower@microsoft.com> | 2017-09-07 20:58:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-07 20:58:07 (GMT) |
commit | 76006f285a7e146484d9296597d1d0ace778f992 (patch) | |
tree | abc29395cebb68a14b401e627ca1492d97594614 /PC/config.c | |
parent | b03623227ed1264e3cac4e6bb4878d96b91aa484 (diff) | |
download | cpython-76006f285a7e146484d9296597d1d0ace778f992.zip cpython-76006f285a7e146484d9296597d1d0ace778f992.tar.gz cpython-76006f285a7e146484d9296597d1d0ace778f992.tar.bz2 |
[3.6] bpo-30389 Adds detection of VS 2017 to distutils._msvccompiler GH-1632 (#3425)
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 43d9e20..f631d73 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 -- */ @@ -165,6 +166,8 @@ struct _inittab _PyImport_Inittab[] = { {"_stat", PyInit__stat}, {"_opcode", PyInit__opcode}, + {"_findvs", PyInit__findvs}, + /* Sentinel */ {0, 0} }; |