[issue20576] Default signatures for slots should be positional-only

2014-02-09 Thread Larry Hastings
Larry Hastings added the comment: I used a different issue number in Misc/NEWS, but this was fixed in revision 28aef6e22736 checked in just a little while ago. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed

[issue20576] Default signatures for slots should be positional-only

2014-02-09 Thread Nick Coghlan
Nick Coghlan added the comment: Good catch, and the patch looks fine to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue20576] Default signatures for slots should be positional-only

2014-02-09 Thread Larry Hastings
New submission from Larry Hastings: 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 t