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 lemburg
Recipients belopolsky, eric.smith, ezio.melotti, lemburg, mark.dickinson, skrah, vstinner
Date 2010-11-28.18:09:20
SpamBayes Score 7.2232764e-10
Marked as misclassified No
Message-id <4CF29ACF.1030006@egenix.com>
In-reply-to <4CF29908.40007@egenix.com>
Content
>>>> float('½')
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
> ValueError: could not convert string to float: �
> 
>>>> float('42½')
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
> ValueError

Note that fractional Unicode code points are not supported
by the encoding function.  Neither are code points which do
not evaluate to 0-9, e.g. ones that represent numbers
larger than 9.
History
Date User Action Args
2010-11-28 18:09:25lemburgsetrecipients: + lemburg, mark.dickinson, belopolsky, vstinner, eric.smith, ezio.melotti, skrah
2010-11-28 18:09:20lemburglinkissue10557 messages
2010-11-28 18:09:20lemburgcreate