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 rhettinger
Date 2018-09-11.23:34:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536708899.31.0.0269046726804.issue34637@psf.upfronthosting.co.za>
In-reply-to
Content
Currently, we can write:

    >>> sum(range(10), 50)
    95

What we want to allow:

    >>> sum(range(10), start=50)
    95

The positional form would still be allowed.
History
Date User Action Args
2018-09-11 23:34:59rhettingersetrecipients: + rhettinger
2018-09-11 23:34:59rhettingersetmessageid: <1536708899.31.0.0269046726804.issue34637@psf.upfronthosting.co.za>
2018-09-11 23:34:59rhettingerlinkissue34637 messages
2018-09-11 23:34:59rhettingercreate