From: Benjamin Peterson Date: Sat, 11 Sep 2010 16:39:57 +0000 (+0000) Subject: fix formatting X-Git-Tag: v3.2a3~315 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=41ece39c217db817a1364cc164178068836674e9;p=thirdparty%2FPython%2Fcpython.git fix formatting --- diff --git a/Objects/object.c b/Objects/object.c index 3bde659c3910..ff3363f43294 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -479,13 +479,13 @@ PyObject_Bytes(PyObject *v) result = PyObject_CallFunctionObjArgs(func, NULL); Py_DECREF(func); if (result == NULL) - return NULL; + return NULL; if (!PyBytes_Check(result)) { - PyErr_Format(PyExc_TypeError, - "__bytes__ returned non-bytes (type %.200s)", - Py_TYPE(result)->tp_name); - Py_DECREF(result); - return NULL; + PyErr_Format(PyExc_TypeError, + "__bytes__ returned non-bytes (type %.200s)", + Py_TYPE(result)->tp_name); + Py_DECREF(result); + return NULL; } return result; }