bpo-30389 Adds detection of VS 2017 to distutils._msvccompiler (#1632)

This commit is contained in:
Steve Dower 2017-09-07 11:49:23 -07:00 committed by GitHub
parent a853a8ba78
commit 05f01d8525
16 changed files with 1272 additions and 110 deletions

View file

@ -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}
};