#7963: fix error message when 'object' called with arguments.

Patch by Alexander Belopolsky.
This commit is contained in:
R David Murray 2013-02-18 21:20:08 -05:00
parent 1548ed6698
commit 6b30759022
2 changed files with 5 additions and 2 deletions

View file

@ -2842,14 +2842,14 @@ object_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
type->tp_init != object_init)
{
err = PyErr_WarnEx(PyExc_DeprecationWarning,
"object.__new__() takes no parameters",
"object() takes no parameters",
1);
}
else if (type->tp_new != object_new ||
type->tp_init == object_init)
{
PyErr_SetString(PyExc_TypeError,
"object.__new__() takes no parameters");
"object() takes no parameters");
err = -1;
}
}