Mark Dickinson added the comment:

> is a base-10 zero padded comming from the parsing of a ip string

If you're parsing an ip string, how do you end up with a 000 *literal*?  The 
SyntaxError only applies to literals in Python code; it doesn't affect 
conversion from strings to integers.  So you don't need the "base=10" keyword: 
the following works in both Python 2 and Python 3.

>>> int("000")
0
>>> int("0019")
19

----------
nosy: +mark.dickinson

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue23230>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to