[ python-Bugs-1764761 ] Decimal comparison with None fails in Windows

SourceForge.net noreply at sourceforge.net
Thu Aug 2 13:42:46 CEST 2007


Bugs item #1764761, was opened at 2007-07-31 13:34
Message generated for change (Settings changed) made by facundobatista
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1764761&group_id=5470

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Python Library
Group: Python 2.5
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: pablohoffman.com (pablohoffman)
>Assigned to: Facundo Batista (facundobatista)
Summary: Decimal comparison with None fails in Windows

Initial Comment:
The version used to test this was:
Python 2.5.1 (r251:54863, May  2 2007, 16:56:35) 

In Linux:
>>> from decimal import Decimal
>>> Decimal('1') < None
False
>>>

In Windows:
>>> from decimal import Decimal
>>> Decimal('1') < None
True
>>>

This is probably a Windows bug since both platforms do:

>>> 1 < None
False


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1764761&group_id=5470


More information about the Python-bugs-list mailing list