[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Removed in r83352. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-b

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Mark Dickinson
Mark Dickinson added the comment: I agree this should be removed; it's a halfway case, and on a machine that's using x87 floating-point it's subject to the usual issues involving register spills and unpredictable conversions from 64-bit precision to 53-bit precision (dependent on compiler op

[issue9440] Remove bad assert in TestDateTime.test_microsecond_rounding

2010-07-31 Thread Georg Brandl
New submission from Georg Brandl : The last assertion in TestDateTime.test_microsecond_rounding does not test a predictable outcome. For example, on my box it passes with pydebug enabled and fails without. It should just be removed. -- assignee: belopolsky components: Tests messages: