]> granicus.if.org Git - python/commitdiff
Remove unneeded variable assignment.
authorBrett Cannon <bcannon@gmail.com>
Mon, 3 May 2010 23:44:54 +0000 (23:44 +0000)
committerBrett Cannon <bcannon@gmail.com>
Mon, 3 May 2010 23:44:54 +0000 (23:44 +0000)
Found using Clang's static analyzer.

Modules/_bisectmodule.c

index fc54954dabb98ea6e503609a8845df376066aa58..b78476df4d36a0d3ff069340f1fde312a199eef0 100644 (file)
@@ -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);
 }