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 flox
Recipients exarkun, flox, georg.brandl, terry.reedy
Date 2010-01-15.20:50:08
SpamBayes Score 9.2982805e-07
Marked as misclassified No
Message-id <1263588610.1.0.557215100216.issue4221@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3 gives same confusing error:

>>> int(b'\0', 999)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 999: b'\x00'

>>> int(b'x', 999)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: int() arg 2 must be >= 2 and <= 36
History
Date User Action Args
2010-01-15 20:50:10floxsetrecipients: + flox, georg.brandl, terry.reedy, exarkun
2010-01-15 20:50:10floxsetmessageid: <1263588610.1.0.557215100216.issue4221@psf.upfronthosting.co.za>
2010-01-15 20:50:08floxlinkissue4221 messages
2010-01-15 20:50:08floxcreate