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 larry
Recipients larry, ncoghlan, yselivanov
Date 2014-02-09.13:47:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391953653.09.0.426145547934.issue20576@psf.upfronthosting.co.za>
In-reply-to
Content
I just realized that the signatures for builtin slot functions (__iadd__, __delitem__, etc) only accept positional-only arguments.  But when I added the signatures by hand to all the slots I didn't mark them as positional-only.  The attached patch remedies that oversight.
History
Date User Action Args
2014-02-09 13:47:33larrysetrecipients: + larry, ncoghlan, yselivanov
2014-02-09 13:47:33larrysetmessageid: <1391953653.09.0.426145547934.issue20576@psf.upfronthosting.co.za>
2014-02-09 13:47:33larrylinkissue20576 messages
2014-02-09 13:47:32larrycreate