(self)
| 33 | |
| 34 | class TestDouble: |
| 35 | def test_singleton(self): |
| 36 | ftype = finfo(double) |
| 37 | ftype2 = finfo(double) |
| 38 | assert_equal(id(ftype), id(ftype2)) |
| 39 | |
| 40 | class TestLongdouble: |
| 41 | def test_singleton(self): |
nothing calls this directly
no test coverage detected