This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients Alexander.Belopolsky, georg.brandl, python-dev, r.david.murray
Date 2013-02-19.03:12:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361243538.54.0.349990283386.issue7963@psf.upfronthosting.co.za>
In-reply-to
Content
I've applied this.  Note that this makes the object.__new__ message consistent with, say, str.__new__.  That is, 'str.__new__(str, 2, 3)' results in the message "TypeError: str() argument 2 must be str, not int".  So the new object error message is consistent with that convention:  object.__new__(object, 1) now gives "TypeError: object() takes no parameters"
History
Date User Action Args
2013-02-19 03:12:18r.david.murraysetrecipients: + r.david.murray, georg.brandl, Alexander.Belopolsky, python-dev
2013-02-19 03:12:18r.david.murraysetmessageid: <1361243538.54.0.349990283386.issue7963@psf.upfronthosting.co.za>
2013-02-19 03:12:18r.david.murraylinkissue7963 messages
2013-02-19 03:12:18r.david.murraycreate