Commit c62f0525 authored by Jeremy Hylton's avatar Jeremy Hylton

Reformat long lines.

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