Remove unneeded variable assignment.
Found using Clang's static analyzer.
This commit is contained in:
parent
8e9757e432
commit
5d947cb324
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue