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 2dbf2a9 commit 2188bf0Copy full SHA for 2188bf0
1 file changed
PC/msvcrtmodule.c
@@ -220,10 +220,11 @@ static struct PyMethodDef msvcrt_functions[] = {
220
PyMODINIT_FUNC
221
initmsvcrt(void)
222
{
223
+ PyObject *d;
224
PyObject *m = Py_InitModule("msvcrt", msvcrt_functions);
225
if (m == NULL)
226
return;
- PyObject *d = PyModule_GetDict(m);
227
+ d = PyModule_GetDict(m);
228
229
/* constants for the locking() function's mode argument */
230
insertint(d, "LK_LOCK", _LK_LOCK);
0 commit comments