[Python-checkins] r70235 - python/trunk/Objects/bytearrayobject.c

benjamin.peterson python-checkins at python.org
Sun Mar 8 01:21:17 CET 2009


Author: benjamin.peterson
Date: Sun Mar  8 01:21:17 2009
New Revision: 70235

Log:
fix funky indentation

Modified:
   python/trunk/Objects/bytearrayobject.c

Modified: python/trunk/Objects/bytearrayobject.c
==============================================================================
--- python/trunk/Objects/bytearrayobject.c	(original)
+++ python/trunk/Objects/bytearrayobject.c	Sun Mar  8 01:21:17 2009
@@ -1095,11 +1095,11 @@
 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);
     }


More information about the Python-checkins mailing list