]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove a few tab characters introduced by r59314.
authorAlexandre Vassalotti <alexandre@peadrop.com>
Tue, 4 Dec 2007 05:56:11 +0000 (05:56 +0000)
committerAlexandre Vassalotti <alexandre@peadrop.com>
Tue, 4 Dec 2007 05:56:11 +0000 (05:56 +0000)
Objects/bytesobject.c

index 021925a0e4ad6820c1ef537d8be5fd2952d37018..c0f4e81201293d9a525e322c9ca26ca40e77485a 100644 (file)
@@ -2602,12 +2602,12 @@ bytes_extend(PyBytesObject *self, PyObject *arg)
     buf_size = _PyObject_LengthHint(arg);
     /* The length of the argument is unknown or invalid. */
     if (buf_size < 0) {
-               if (PyErr_Occurred()
+        if (PyErr_Occurred()
             && !PyErr_ExceptionMatches(PyExc_TypeError)
             && !PyErr_ExceptionMatches(PyExc_AttributeError)) {
             Py_DECREF(it);
-                       return NULL;
-               }
+            return NULL;
+        }
         PyErr_Clear();
         buf_size = 32;          /* arbitrary */
     }