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 serhiy.storchaka
Recipients CuriousLearner, ncoghlan, serhiy.storchaka
Date 2018-01-04.13:22:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515072135.6.0.467229070634.issue31506@psf.upfronthosting.co.za>
In-reply-to
Content
Error messages "object.__init__() takes no arguments" and "object.__new__() takes no arguments" are wrong. They contradicts the following error messages:

>>> object.__init__()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor '__init__' of 'object' object needs an argument
>>> object.__new__()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: object.__new__(): not enough arguments
History
Date User Action Args
2018-01-04 13:22:15serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, CuriousLearner
2018-01-04 13:22:15serhiy.storchakasetmessageid: <1515072135.6.0.467229070634.issue31506@psf.upfronthosting.co.za>
2018-01-04 13:22:15serhiy.storchakalinkissue31506 messages
2018-01-04 13:22:15serhiy.storchakacreate