]> granicus.if.org Git - python/commitdiff
Reformat long lines.
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 26 Feb 2007 16:14:51 +0000 (16:14 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 26 Feb 2007 16:14:51 +0000 (16:14 +0000)
Python/ceval.c

index b0617a2a8ed98e9da9c4417deba557b104fe093f..3a87052d99b576c877de9a74050870a1f5f9f42f 100644 (file)
@@ -4115,7 +4115,8 @@ build_class(PyObject *methods, PyObject *bases, PyObject *name)
                        metaclass = (PyObject *) &PyClass_Type;
                Py_INCREF(metaclass);
        }
-       result = PyObject_CallFunctionObjArgs(metaclass, name, bases, methods, NULL);
+       result = PyObject_CallFunctionObjArgs(metaclass, name, bases, methods,
+                                              NULL);
        Py_DECREF(metaclass);
        if (result == NULL && PyErr_ExceptionMatches(PyExc_TypeError)) {
                /* A type error here likely means that the user passed
@@ -4129,7 +4130,8 @@ build_class(PyObject *methods, PyObject *bases, PyObject *name)
                if (PyString_Check(pvalue)) {
                        PyObject *newmsg;
                        newmsg = PyString_FromFormat(
-                               "Error when calling the metaclass bases\n    %s",
+                               "Error when calling the metaclass bases\n"
+                                "    %s",
                                PyString_AS_STRING(pvalue));
                        if (newmsg != NULL) {
                                Py_DECREF(pvalue);