Commit 9c1f7b2b authored by Benjamin Peterson's avatar Benjamin Peterson

fix funky indentation

parent 15d57653
...@@ -1095,11 +1095,11 @@ bytes_richcompare(PyObject *self, PyObject *other, int op) ...@@ -1095,11 +1095,11 @@ bytes_richcompare(PyObject *self, PyObject *other, int op)
static void static void
bytes_dealloc(PyByteArrayObject *self) bytes_dealloc(PyByteArrayObject *self)
{ {
if (self->ob_exports > 0) { if (self->ob_exports > 0) {
PyErr_SetString(PyExc_SystemError, PyErr_SetString(PyExc_SystemError,
"deallocated bytearray object has exported buffers"); "deallocated bytearray object has exported buffers");
PyErr_Print(); PyErr_Print();
} }
if (self->ob_bytes != 0) { if (self->ob_bytes != 0) {
PyMem_Free(self->ob_bytes); PyMem_Free(self->ob_bytes);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment