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 iritkatriel
Recipients LambertDW, iritkatriel, r.david.murray
Date 2021-02-15.20:26:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613420815.14.0.545623017093.issue16608@roundup.psfhosted.org>
In-reply-to
Content
The issue still exists in 3.10:

Python 3.10.0a5+ (heads/master:bf2e7e55d7, Feb 11 2021, 23:09:25) [MSC v.1928 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> class c(tuple):
...  def __init__(s,a,b):
...    tuple.__init__(s,a)
...    self.b = b
...
>>> c(tuple(),666)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: tuple expected at most 1 argument, got 2
>>>
History
Date User Action Args
2021-02-15 20:26:55iritkatrielsetrecipients: + iritkatriel, LambertDW, r.david.murray
2021-02-15 20:26:55iritkatrielsetmessageid: <1613420815.14.0.545623017093.issue16608@roundup.psfhosted.org>
2021-02-15 20:26:55iritkatriellinkissue16608 messages
2021-02-15 20:26:54iritkatrielcreate