[Python-ideas] Keyword-only arguments?
Guido van Rossum
guido at python.org
Sun Jun 21 11:11:49 CEST 2015
More information about the Python-ideas mailing list
Sun Jun 21 11:11:49 CEST 2015
- Previous message (by thread): [Python-ideas] Keyword-only arguments?
- Next message (by thread): [Python-ideas] Keyword-only arguments?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
My approach to this particular case has always been, if I need to port keyword-only args to older Python versions, I'll just remove the '*' and make it a documented convention that those arguments must be passed by keyword only, without enforcement. The code obfuscation is just not worth it -- it's just rarely super-important to strictly enforce this convention. -- --Guido van Rossum (python.org/~guido) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-ideas/attachments/20150621/b3609621/attachment.html>
- Previous message (by thread): [Python-ideas] Keyword-only arguments?
- Next message (by thread): [Python-ideas] Keyword-only arguments?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-ideas mailing list