[Python-checkins] r84717 - python/branches/py3k/Objects/object.c

benjamin.peterson python-checkins at python.org
Sat Sep 11 18:39:57 CEST 2010


Author: benjamin.peterson
Date: Sat Sep 11 18:39:57 2010
New Revision: 84717

Log:
fix formatting

Modified:
   python/branches/py3k/Objects/object.c

Modified: python/branches/py3k/Objects/object.c
==============================================================================
--- python/branches/py3k/Objects/object.c	(original)
+++ python/branches/py3k/Objects/object.c	Sat Sep 11 18:39:57 2010
@@ -479,13 +479,13 @@
         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;
     }


More information about the Python-checkins mailing list