[Python-checkins] r84387 - python/branches/py3k/Modules/_bisectmodule.c

raymond.hettinger python-checkins at python.org
Wed Sep 1 10:56:10 CEST 2010


Author: raymond.hettinger
Date: Wed Sep  1 10:56:10 2010
New Revision: 84387

Log:
Fix line wrapping

Modified:
   python/branches/py3k/Modules/_bisectmodule.c

Modified: python/branches/py3k/Modules/_bisectmodule.c
==============================================================================
--- python/branches/py3k/Modules/_bisectmodule.c	(original)
+++ python/branches/py3k/Modules/_bisectmodule.c	Wed Sep  1 10:56:10 2010
@@ -86,8 +86,7 @@
         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 @@
         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);


More information about the Python-checkins mailing list