mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
- fix build failure in Modules/fpectlmodule.c (not built by default)
This commit is contained in:
parent
71fb513437
commit
1ff110d8b3
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ static struct PyModuleDef fpectlmodule = {
|
|||
PyMODINIT_FUNC PyInit_fpectl(void)
|
||||
{
|
||||
PyObject *m, *d;
|
||||
m = PyModule_Create("fpectl", fpectl_methods);
|
||||
m = PyModule_Create(&fpectlmodule);
|
||||
if (m == NULL)
|
||||
return NULL;
|
||||
d = PyModule_GetDict(m);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue