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 adamtj
Recipients adamtj
Date 2009-11-14.18:39:18
SpamBayes Score 1.6431618e-06
Marked as misclassified No
Message-id <1258223960.66.0.3588708996.issue7323@psf.upfronthosting.co.za>
In-reply-to
Content
These should all return False, or some of them should raise exceptions:

Python 2.6.2 (release26-maint, Apr 19 2009, 01:58:18)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import decimal
>>> decimal.Decimal('0') > 0
False
>>> decimal.Decimal('0') < 0
False
>>> decimal.Decimal('0') > 0.0
True
>>> decimal.Decimal('0') < 0.0
False
>>> 0.0 > decimal.Decimal('0')
False
>>> 0.0 < decimal.Decimal('0')
True
>>> 0.0 < decimal.Decimal('0.0')
True
>>> decimal.Decimal('0') > decimal.Decimal('0')
False
History
Date User Action Args
2009-11-14 18:39:20adamtjsetrecipients: + adamtj
2009-11-14 18:39:20adamtjsetmessageid: <1258223960.66.0.3588708996.issue7323@psf.upfronthosting.co.za>
2009-11-14 18:39:19adamtjlinkissue7323 messages
2009-11-14 18:39:18adamtjcreate