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 vstinner
Recipients TD22057, vstinner
Date 2008-10-13.17:17:45
SpamBayes Score 1.3920491e-05
Marked as misclassified No
Message-id <1223918266.95.0.716238169855.issue4114@psf.upfronthosting.co.za>
In-reply-to
Content
Why do you use float (32 bits) instead of double (64 bits)? Your 
example use:
 double (python) -> float (C) -> double (python)

If you convert 64 bits float to 32 bits, for sure you will loose some 
digits. It's not a bug in Python, but a problem in your code ;-)
History
Date User Action Args
2008-10-13 17:17:47vstinnersetrecipients: + vstinner, TD22057
2008-10-13 17:17:46vstinnersetmessageid: <1223918266.95.0.716238169855.issue4114@psf.upfronthosting.co.za>
2008-10-13 17:17:46vstinnerlinkissue4114 messages
2008-10-13 17:17:45vstinnercreate