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 georg.brandl
Recipients Arfrever, docs@python, ethan.furman, ezio.melotti, georg.brandl, r.david.murray, rhettinger, terry.reedy, tshepang, vy0123
Date 2014-11-05.07:13:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1415171598.74.0.735743720312.issue22725@psf.upfronthosting.co.za>
In-reply-to
Content
Missing keyword argument support is not the norm, it's the exception that is only due to implementation details in C code. Eventually, we'd like every C function to support keyword arguments.

Converting everything is tedious work, though, and still makes things slower (that may become less of an issue eventually with Clinic), so only select functions are converted.

Functions are good candidates for keyword argument support when they have parameters that are best passed as keywords, such as

    enumerate(x, start=5)

which makes it immediately clear what the second parameter does.
History
Date User Action Args
2014-11-05 07:13:18georg.brandlsetrecipients: + georg.brandl, rhettinger, terry.reedy, ezio.melotti, Arfrever, r.david.murray, docs@python, ethan.furman, tshepang, vy0123
2014-11-05 07:13:18georg.brandlsetmessageid: <1415171598.74.0.735743720312.issue22725@psf.upfronthosting.co.za>
2014-11-05 07:13:18georg.brandllinkissue22725 messages
2014-11-05 07:13:18georg.brandlcreate