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 benjamin.peterson, mhmtyozcu001, vstinner
Date 2008-10-06.23:09:08
SpamBayes Score 0.0012625006
Marked as misclassified No
Message-id <1223334549.6.0.438579751864.issue4061@psf.upfronthosting.co.za>
In-reply-to
Content
Use Decimal to get an exact result:
>>> from decimal import Decimal
>>> print Decimal('2.3') + Decimal('6.3')
8.6
History
Date User Action Args
2008-10-06 23:09:09vstinnersetrecipients: + vstinner, benjamin.peterson, mhmtyozcu001
2008-10-06 23:09:09vstinnersetmessageid: <1223334549.6.0.438579751864.issue4061@psf.upfronthosting.co.za>
2008-10-06 23:09:08vstinnerlinkissue4061 messages
2008-10-06 23:09:08vstinnercreate