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 belopolsky
Recipients alex, belopolsky, daniel.urban, mark.dickinson, pitrou, rhettinger
Date 2011-05-03.18:46:41
SpamBayes Score 2.0941302e-06
Marked as misclassified No
Message-id <BANLkTimebZg=FVsRW9R9ckfxB0BRoTqHaA@mail.gmail.com>
In-reply-to <1304448063.82.0.963023080355.issue11986@psf.upfronthosting.co.za>
Content
On Tue, May 3, 2011 at 2:41 PM, Raymond Hettinger
<report@bugs.python.org> wrote:
..
> Undefined ordering means just that.

Means what?  Compare float behavior to

Decimal('1')
>>> Decimal(1).max(Decimal('nan'))
Decimal('1')
>>> max(Decimal('1'), Decimal('nan'))
Traceback (most recent call last):
 ..
decimal.InvalidOperation: comparison involving NaN

Raymond, you don't really need to stop the debate 4 minutes after the
bug has been reported.
History
Date User Action Args
2011-05-03 18:46:42belopolskysetrecipients: + belopolsky, rhettinger, mark.dickinson, pitrou, alex, daniel.urban
2011-05-03 18:46:41belopolskylinkissue11986 messages
2011-05-03 18:46:41belopolskycreate