There was an error while loading. Please reload this page.
1 parent 1a21451 commit 3447beeCopy full SHA for 3447bee
2 files changed
Modules/md5module.c
@@ -566,5 +566,5 @@ PyInit__md5(void)
566
Py_TYPE(&MD5type) = &PyType_Type;
567
if (PyType_Ready(&MD5type) < 0)
568
return NULL;
569
- return PyModule_Create("_md5", MD5_functions);
+ return PyModule_Create(&_md5module);
570
}
Modules/sha1module.c
@@ -539,8 +539,6 @@ static struct PyModuleDef _sha1module = {
539
PyMODINIT_FUNC
540
PyInit__sha1(void)
541
{
542
- PyObject *m;
543
-
544
Py_TYPE(&SHA1type) = &PyType_Type;
545
if (PyType_Ready(&SHA1type) < 0)
546
0 commit comments