()
| 62 | |
| 63 | |
| 64 | def test_float_with_nan(): |
| 65 | f = float("nan") |
| 66 | a = array("f") |
| 67 | a.append(f) |
| 68 | assert not (a == a) |
| 69 | assert a != a |
| 70 | assert not (a < a) |
| 71 | assert not (a <= a) |
| 72 | assert not (a > a) |
| 73 | assert not (a >= a) |
| 74 | |
| 75 | |
| 76 | test_float_with_nan() |
no test coverage detected