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 serhiy.storchaka
Recipients abarry, llllllllll, martin.panter, matrixise, serhiy.storchaka
Date 2015-12-02.07:39:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449041970.53.0.30411325967.issue25770@psf.upfronthosting.co.za>
In-reply-to
Content
"keywords" is unusual name. The most used name for the dict of keyword arguments is "kwargs".

$ find Lib/ -name '*.py' -exec egrep -ho '\*\*[a-zA-Z_0-9]+' '{}' + | sort | uniq -c | sort -nr | head
    803 **kwargs
    442 **kw
    244 **kwds
...

If you want to have keyword arguments non-mutable, you can use types.MappingProxyType.
History
Date User Action Args
2015-12-02 07:39:30serhiy.storchakasetrecipients: + serhiy.storchaka, martin.panter, matrixise, llllllllll, abarry
2015-12-02 07:39:30serhiy.storchakasetmessageid: <1449041970.53.0.30411325967.issue25770@psf.upfronthosting.co.za>
2015-12-02 07:39:30serhiy.storchakalinkissue25770 messages
2015-12-02 07:39:30serhiy.storchakacreate