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 mjpieters
Recipients mjpieters
Date 2018-05-18.10:41:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526640101.14.0.682650639539.issue33567@psf.upfronthosting.co.za>
In-reply-to
Content
float(bytesobject) treats the contents of the bytesobject as a sequence of ASCII characters, and converts those to a float value as if you used float(bytesobject.decode('ASCII')). The same support is extended to other objects implementing the buffer protocol.

The documentation, however, doesn't mention this:

> Return a floating point number constructed from a number or string x.

Everywhere else in the functions documentation, "string" refers to an object of type `str`. Please make it explicit that `bytes` is also acceptedable, like it does for the int() documentation.
History
Date User Action Args
2018-05-18 10:41:41mjpieterssetrecipients: + mjpieters
2018-05-18 10:41:41mjpieterssetmessageid: <1526640101.14.0.682650639539.issue33567@psf.upfronthosting.co.za>
2018-05-18 10:41:41mjpieterslinkissue33567 messages
2018-05-18 10:41:41mjpieterscreate