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 LambertDW
Recipients LambertDW
Date 2012-12-04.18:54:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1354647243.72.0.494328426401.issue16608@psf.upfronthosting.co.za>
In-reply-to
Content
http://forums.devshed.com/newreply.php?do=newreply&noquote=1&p=2838814

>>> 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() takes at most 1 argument (2 given)
>>>
History
Date User Action Args
2012-12-04 18:54:03LambertDWsetrecipients: + LambertDW
2012-12-04 18:54:03LambertDWsetmessageid: <1354647243.72.0.494328426401.issue16608@psf.upfronthosting.co.za>
2012-12-04 18:54:03LambertDWlinkissue16608 messages
2012-12-04 18:54:03LambertDWcreate