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 ncoghlan, pablogsal, serhiy.storchaka
Date 2019-05-31.08:27:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559291270.55.0.00118529711916.issue37108@roundup.psfhosted.org>
In-reply-to
Content
See the example pep570super.py. super() without arguments does not work for positional-only arguments.

Traceback (most recent call last):
  File "pep570super.py", line 13, in <module>
    print(C())
  File "pep570super.py", line 10, in __new__
    return super().__new__(cls)
RuntimeError: super(): no arguments
History
Date User Action Args
2019-05-31 08:27:50serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, pablogsal
2019-05-31 08:27:50serhiy.storchakasetmessageid: <1559291270.55.0.00118529711916.issue37108@roundup.psfhosted.org>
2019-05-31 08:27:50serhiy.storchakalinkissue37108 messages
2019-05-31 08:27:50serhiy.storchakacreate