Message122693
| 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('1⁄2')
> Traceback (most recent call last):
> File "<stdin>", line 1, in <module>
> ValueError: could not convert string to float: �
>
>>>> float('421⁄2')
> 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. |
|