Remove unneeded variable assignment.

Found using Clang's static analyzer.
This commit is contained in:
Brett Cannon 2010-05-03 23:44:54 +00:00
parent 8e9757e432
commit 5d947cb324
1 changed files with 1 additions and 3 deletions

View 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);
}