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 rhettinger
Recipients Akos Kiss, ammar2, eric.smith, rhettinger, serhiy.storchaka, vstinner
Date 2020-02-20.16:02:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1582214569.04.0.392518318541.issue39694@roundup.psfhosted.org>
In-reply-to
Content
I'm with Eric and don't see this as a problem in practice.

Also, the kwarg handling for functions is fundamentally different because all arguments need to be matched.  In contrast, the kwargs for format() are only used on-demand:

    >>> '{found}'.format(found='used', not_found='ignored')
    'used'

I recommend this be left as-is.
History
Date User Action Args
2020-02-20 16:02:49rhettingersetrecipients: + rhettinger, vstinner, eric.smith, serhiy.storchaka, ammar2, Akos Kiss
2020-02-20 16:02:49rhettingersetmessageid: <1582214569.04.0.392518318541.issue39694@roundup.psfhosted.org>
2020-02-20 16:02:49rhettingerlinkissue39694 messages
2020-02-20 16:02:48rhettingercreate