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 lschoe
Recipients ammar2, lschoe, lukasz.langa, mark.dickinson, miss-islington, rhettinger, serhiy.storchaka
Date 2020-03-17.11:50:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584445858.1.0.747477280855.issue38237@roundup.psfhosted.org>
In-reply-to
Content
Maybe a use case in this direction: int(x, base=10).
Because, if you type 

    int(x='3', base=12)

you get

    TypeError: 'x' is an invalid keyword argument for int()

and x needs to be a positional-only to program this yourself.
History
Date User Action Args
2020-03-17 11:50:58lschoesetrecipients: + lschoe, rhettinger, mark.dickinson, lukasz.langa, serhiy.storchaka, ammar2, miss-islington
2020-03-17 11:50:58lschoesetmessageid: <1584445858.1.0.747477280855.issue38237@roundup.psfhosted.org>
2020-03-17 11:50:58lschoelinkissue38237 messages
2020-03-17 11:50:58lschoecreate