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 vstinner
Recipients serhiy.storchaka, vstinner
Date 2017-03-07.13:44:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488894289.51.0.465519491821.issue29749@psf.upfronthosting.co.za>
In-reply-to
Content
bpo-29695 removed "bad keyword parameters in int(), bool(), float(), list() and tuple()", but int docstring (at least) is now outdated:

haypo@selma$ ./python
Python 3.7.0a0 (master:8f6b344d368c15c3fe56c65c2f2776e7766fef55, Mar  7 >>> help(int)
class int(object)
 |  int(x=0) -> integer
 |  int(x, base=10) -> integer
 ...
>>> int(x=0)
TypeError: 'x' is an invalid keyword argument for this function
History
Date User Action Args
2017-03-07 13:44:49vstinnersetrecipients: + vstinner, serhiy.storchaka
2017-03-07 13:44:49vstinnersetmessageid: <1488894289.51.0.465519491821.issue29749@psf.upfronthosting.co.za>
2017-03-07 13:44:49vstinnerlinkissue29749 messages
2017-03-07 13:44:49vstinnercreate