8000 Fix build on Windows. · python/cpython@7b61c5e · GitHub
[go: up one dir, main page]

Skip to content

Commit 7b61c5e

Browse files
Fix build on Windows.
1 parent 71d7f4f commit 7b61c5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PC/config.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern PyObject* PyInit_errno(void);
1313
extern PyObject* PyInit_faulthandler(void);
1414
extern PyObject* PyInit__tracemalloc(void);
1515
extern PyObject* PyInit_gc(void);
16-
extern PyObject* PyInit__imath(void);
16+
extern PyObject* PyInit_imath(void);
1717
extern PyObject* PyInit_math(void);
1818
extern PyObject* PyInit_nt(void);
1919
extern PyObject* PyInit__operator(void);
@@ -101,7 +101,7 @@ struct _inittab _PyImport_Inittab[] = {
101101
{"errno", PyInit_errno},
102102
{"faulthandler", PyInit_faulthandler},
103103
{"gc", PyInit_gc},
104-
{"imath", PyInit__imath},
104+
{"imath", PyInit_imath},
105105
{"math", PyInit_math},
106106
{"nt", PyInit_nt}, /* Use the NT os functions, not posix */
107107
{"_operator", PyInit__operator},

0 commit comments

Comments
 (0)
0