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 andymaier
Recipients andymaier
Date 2018-08-19.13:37:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1534685830.81.0.56676864532.issue34434@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.7 removed support for passing the argument to the built-in functions int(), bool(), float(), list() and tuple() as a keyword argument.

This change is described in the "What's New" for 3.7 (https://docs.python.org/3/whatsnew/3.7.html) in section "API and Feature Removals":

    Functions bool(), float(), list() and tuple() no longer take
    keyword arguments. The first argument of int() can now be passed
    only as positional argument.

The issue is that this change is not described in the documentation of these built-in functions.
History
Date User Action Args
2018-08-19 13:37:10andymaiersetrecipients: + andymaier
2018-08-19 13:37:10andymaiersetmessageid: <1534685830.81.0.56676864532.issue34434@psf.upfronthosting.co.za>
2018-08-19 13:37:10andymaierlinkissue34434 messages
2018-08-19 13:37:10andymaiercreate