]> granicus.if.org Git - python/commitdiff
fix funky indentation
authorBenjamin Peterson <benjamin@python.org>
Sun, 8 Mar 2009 00:21:17 +0000 (00:21 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 8 Mar 2009 00:21:17 +0000 (00:21 +0000)
Objects/bytearrayobject.c

index ad3736696e114c91e48cf1d17fa2abd6301596e4..4921a8807798413dd19a5c23731922d7fd792411 100644 (file)
@@ -1095,11 +1095,11 @@ bytes_richcompare(PyObject *self, PyObject *other, int op)
 static void
 bytes_dealloc(PyByteArrayObject *self)
 {
-       if (self->ob_exports > 0) {
-               PyErr_SetString(PyExc_SystemError,
+    if (self->ob_exports > 0) {
+        PyErr_SetString(PyExc_SystemError,
                        "deallocated bytearray object has exported buffers");
-               PyErr_Print();
-       }
+        PyErr_Print();
+    }
     if (self->ob_bytes != 0) {
         PyMem_Free(self->ob_bytes);
     }