From: Brett Cannon Date: Mon, 3 May 2010 23:44:54 +0000 (+0000) Subject: Remove unneeded variable assignment. X-Git-Tag: v2.7b2~107 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d947cb324d1909480d71896cb5a9c06a668d6b3;p=python Remove unneeded variable assignment. Found using Clang's static analyzer. --- diff --git a/Modules/_bisectmodule.c b/Modules/_bisectmodule.c index fc54954dab..b78476df4d 100644 --- a/Modules/_bisectmodule.c +++ b/Modules/_bisectmodule.c @@ -237,7 +237,5 @@ common approach.\n"); PyMODINIT_FUNC init_bisect(void) { - PyObject *m; - - m = Py_InitModule3("_bisect", bisect_methods, module_doc); + Py_InitModule3("_bisect", bisect_methods, module_doc); }