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 josh.r
Recipients andreasvc, bquinlan, josh.r
Date 2014-05-06.21:45:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1399412703.2.0.51726848158.issue21423@psf.upfronthosting.co.za>
In-reply-to
Content
I'm not a core developer, but writing the patch is usually considered helpful. Two notes:

1. Make sure to write unit tests for any new behavior
2. I'd suggest making any such argument keyword-only; if we move closer to the Java executor model, that means having a lot of options, the majority of which would be left as the default by users. Binding the API to a particular argument order is sub-optimal (it makes it even harder to deprecate arguments for instance), so enforcing keyword only behavior ensures users can't write call lines that take dependencies on argument ordering.
History
Date User Action Args
2014-05-06 21:45:03josh.rsetrecipients: + josh.r, bquinlan, andreasvc
2014-05-06 21:45:03josh.rsetmessageid: <1399412703.2.0.51726848158.issue21423@psf.upfronthosting.co.za>
2014-05-06 21:45:03josh.rlinkissue21423 messages
2014-05-06 21:45:02josh.rcreate