diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-02-19 02:44:03 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-02-19 02:44:03 (GMT) |
commit | aaf16b9cfb1da564050a465e7dea194609d39b6a (patch) | |
tree | 90b2ed18462a697a49486e4ac5412eaf21fc72e9 /Objects | |
parent | 789ee0f31f2f7868d5ce7d2dce470932e37b1683 (diff) | |
parent | 702a5dc1ed7907c4017106388329db73c038345c (diff) | |
download | cpython-aaf16b9cfb1da564050a465e7dea194609d39b6a.zip cpython-aaf16b9cfb1da564050a465e7dea194609d39b6a.tar.gz cpython-aaf16b9cfb1da564050a465e7dea194609d39b6a.tar.bz2 |
Merge: #7963: fix error message when 'object' called with arguments.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index f71cad3..01a5999 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3059,7 +3059,7 @@ object_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { if (excess_args(args, kwds) && (type->tp_init == object_init || type->tp_new != object_new)) { - PyErr_SetString(PyExc_TypeError, "object.__new__() takes no parameters"); + PyErr_SetString(PyExc_TypeError, "object() takes no parameters"); return NULL; } |