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 exarkun
Recipients exarkun
Date 2008-10-28.17:11:56
SpamBayes Score 4.066124e-06
Marked as misclassified No
Message-id <1225213917.89.0.391557406226.issue4221@psf.upfronthosting.co.za>
In-reply-to
Content
exarkun@charm:~$ python
Python 2.5.2 (r252:60911, Jul 31 2008, 17:28:52) 
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> int('\0', 256)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 256: '\x00'
>>> int('x', 256)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: int() base must be >= 2 and <= 36
>>> 

The former is misleading.  \x00 is a perfectly valid byte if the base is
256.  The real problem, that base 256 isn't supported, is obscured.  It
would be much better for the latter case's message to be used in the
former case.
History
Date User Action Args
2008-10-28 17:11:57exarkunsetrecipients: + exarkun
2008-10-28 17:11:57exarkunsetmessageid: <1225213917.89.0.391557406226.issue4221@psf.upfronthosting.co.za>
2008-10-28 17:11:57exarkunlinkissue4221 messages
2008-10-28 17:11:56exarkuncreate