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 terry.reedy
Recipients cheryl.sabella, cubinator, docs@python, mark.dickinson, martin.panter, terry.reedy
Date 2017-03-30.20:29:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490905741.92.0.507048548223.issue29751@psf.upfronthosting.co.za>
In-reply-to
Content
String arguments to int are quoted int literals.  From
https://docs.python.org/3/reference/lexical_analysis.html#literals
'Underscores are ignored for determining the numeric value of the literal. They can be used to group digits for enhanced readability. One underscore can occur between digits, and after base specifiers like 0x.'

For your patch, I would summarize this by expanding 'Leading spaces are ignored.' to the following (in patch comment also).
"Leading spaces and single underscores after a base specifier and between digits are ignored."
History
Date User Action Args
2017-03-30 20:29:01terry.reedysetrecipients: + terry.reedy, mark.dickinson, docs@python, martin.panter, cubinator, cheryl.sabella
2017-03-30 20:29:01terry.reedysetmessageid: <1490905741.92.0.507048548223.issue29751@psf.upfronthosting.co.za>
2017-03-30 20:29:01terry.reedylinkissue29751 messages
2017-03-30 20:29:00terry.reedycreate