commit | 5d947cb324d1909480d71896cb5a9c06a668d6b3 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Mon May 03 23:44:54 2010 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Mon May 03 23:44:54 2010 +0000 |
tree | 37b75edebd4e0074cf558d52bf2916518de08c60 | |
parent | 8e9757e432450514b3bc58373df75b71a3ae697d [diff] [blame] |
Remove unneeded variable assignment. Found using Clang's static analyzer.
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 @@ PyMODINIT_FUNC init_bisect(void) { - PyObject *m; - - m = Py_InitModule3("_bisect", bisect_methods, module_doc); + Py_InitModule3("_bisect", bisect_methods, module_doc); }