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 Arfrever, georg.brandl, hynek, larry, pitrou, r.david.murray, serhiy.storchaka
Date 2012-07-03.05:27:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341293228.71.0.126707116167.issue15202@psf.upfronthosting.co.za>
In-reply-to
Content
> What's the urge to make parameters keyword-only?

I suggest that boolean parameters are best made keyword-only.  Otherwise you have mystery meat like

shutil.copyfile("src", "dst", True)

Also, all the extant uses of "follow_symlinks" in os are keyword-only, and as long as it's a new parameter it'd be nice to keep it consistent.
History
Date User Action Args
2012-07-03 05:27:08larrysetrecipients: + larry, georg.brandl, pitrou, Arfrever, r.david.murray, hynek, serhiy.storchaka
2012-07-03 05:27:08larrysetmessageid: <1341293228.71.0.126707116167.issue15202@psf.upfronthosting.co.za>
2012-07-03 05:27:08larrylinkissue15202 messages
2012-07-03 05:27:07larrycreate