diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-08 00:21:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-08 00:21:17 (GMT) |
commit | 9c1f7b2b04d1bbd92e575044f6fc3929c720cd72 (patch) | |
tree | e4fbbc2be93d8ec93aaaf1cb238cb72b62d4d69d | |
parent | 15d57653f1ef6f7b5321c50e3bf03994d0428497 (diff) | |
download | cpython-9c1f7b2b04d1bbd92e575044f6fc3929c720cd72.zip cpython-9c1f7b2b04d1bbd92e575044f6fc3929c720cd72.tar.gz cpython-9c1f7b2b04d1bbd92e575044f6fc3929c720cd72.tar.bz2 |
fix funky indentation
-rw-r--r-- | Objects/bytearrayobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index ad37366..4921a88 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -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); } |