From: Fred Drake Date: Mon, 1 Apr 2002 14:30:50 +0000 (+0000) Subject: Remove unused variable and call to PyModule_GetDict(). X-Git-Tag: v2.3c1~6198 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d63e504d333fc325ed4d7951fcfc2afb3d5aa910;p=python Remove unused variable and call to PyModule_GetDict(). --- diff --git a/Modules/shamodule.c b/Modules/shamodule.c index f33f9074e7..bb9d37a485 100644 --- a/Modules/shamodule.c +++ b/Modules/shamodule.c @@ -529,13 +529,12 @@ static struct PyMethodDef SHA_functions[] = { DL_EXPORT(void) initsha(void) { - PyObject *d, *m; + PyObject *m; SHAtype.ob_type = &PyType_Type; m = Py_InitModule("sha", SHA_functions); /* Add some symbolic constants to the module */ - d = PyModule_GetDict(m); insint("blocksize", 1); /* For future use, in case some hash functions require an integral number of blocks */