Revert a wrong commit.

This commit is contained in:
Thomas Heller 2007-07-11 20:01:43 +00:00
parent f630dac178
commit ace8ba8d4b
2 changed files with 8 additions and 15 deletions

View file

@ -575,7 +575,7 @@ PyErr_NewException(char *name, PyObject *base, PyObject *dict)
goto failure;
}
/* Create a real new-style class. */
result = PyObject_CallFunction((PyObject *)&PyType_Type, "UOO",
result = PyObject_CallFunction((PyObject *)&PyType_Type, "sOO",
dot+1, bases, dict);
failure:
Py_XDECREF(bases);