From 6b3d72c243a272eba1676c67cd6cceffb035c781 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 1 Sep 2010 08:56:10 +0000 Subject: Fix line wrapping --- Modules/_bisectmodule.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Modules/_bisectmodule.c b/Modules/_bisectmodule.c index f65a583..7fecfc6 100644 --- a/Modules/_bisectmodule.c +++ b/Modules/_bisectmodule.c @@ -86,8 +86,7 @@ insort_right(PyObject *self, PyObject *args, PyObject *kw) if (PyList_Insert(list, index, item) < 0) return NULL; } else { - result = PyObject_CallMethod(list, "insert", "nO", - index, item); + result = PyObject_CallMethod(list, "insert", "nO", index, item); if (result == NULL) return NULL; Py_DECREF(result); @@ -187,8 +186,7 @@ insort_left(PyObject *self, PyObject *args, PyObject *kw) if (PyList_Insert(list, index, item) < 0) return NULL; } else { - result = PyObject_CallMethod(list, "insert", "iO", - index, item); + result = PyObject_CallMethod(list, "insert", "iO", index, item); if (result == NULL) return NULL; Py_DECREF(result); -- cgit v0.12