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 serhiy.storchaka
Recipients Radosław Szalski, mark.dickinson, serhiy.storchaka
Date 2016-06-09.18:39:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465497551.96.0.538070116851.issue27265@psf.upfronthosting.co.za>
In-reply-to
Content
Note that Decimal(0.05) != Decimal('0.05').

>>> Decimal(0.05)
Decimal('0.05000000000000000277555756156289135105907917022705078125')
>>> hash(Decimal(0.05))
966367654
>>> hash(Decimal('0.05000000000000000277555756156289135105907917022705078125'))
966367654
>>> hash(0.05)
966367654
History
Date User Action Args
2016-06-09 18:39:11serhiy.storchakasetrecipients: + serhiy.storchaka, mark.dickinson, Radosław Szalski
2016-06-09 18:39:11serhiy.storchakasetmessageid: <1465497551.96.0.538070116851.issue27265@psf.upfronthosting.co.za>
2016-06-09 18:39:11serhiy.storchakalinkissue27265 messages
2016-06-09 18:39:11serhiy.storchakacreate