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