From 5d947cb324d1909480d71896cb5a9c06a668d6b3 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 3 May 2010 23:44:54 +0000 Subject: Remove unneeded variable assignment. Found using Clang's static analyzer. --- Modules/_bisectmodule.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Modules/_bisectmodule.c b/Modules/_bisectmodule.c index fc54954..b78476d 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); } -- cgit v0.12