Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf49e20 commit 429ef65Copy full SHA for 429ef65
1 file changed
Python/marshal.c
@@ -1191,7 +1191,7 @@ static PyMethodDef marshal_methods[] = {
1191
{NULL, NULL} /* sentinel */
1192
};
1193
1194
-static struct PyModuleDef impmodule = {
+static struct PyModuleDef marshalmodule = {
1195
PyModuleDef_HEAD_INIT,
1196
"marshal",
1197
NULL,
@@ -1208,7 +1208,7 @@ static struct PyModuleDef impmodule = {
1208
PyMODINIT_FUNC
1209
PyMarshal_Init(void)
1210
{
1211
- PyObject *mod = PyModule_Create(&impmodule);
+ PyObject *mod = PyModule_Create(&marshalmodule);
1212
if (mod == NULL)
1213
return NULL;
1214
PyModule_AddIntConstant(mod, "version", Py_MARSHAL_VERSION);
0 commit comments