mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Remove unneeded variable assignment.
Found using Clang's static analyzer.
This commit is contained in:
parent
8e9757e432
commit
5d947cb324
1 changed files with 1 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue