mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-30389 Adds detection of VS 2017 to distutils._msvccompiler (#1632)
This commit is contained in:
parent
a853a8ba78
commit
05f01d8525
16 changed files with 1272 additions and 110 deletions
|
@ -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}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue