(self)
| 27 | |
| 28 | class TestSingle: |
| 29 | def test_singleton(self): |
| 30 | ftype = finfo(single) |
| 31 | ftype2 = finfo(single) |
| 32 | assert_equal(id(ftype), id(ftype2)) |
| 33 | |
| 34 | class TestDouble: |
| 35 | def test_singleton(self): |
nothing calls this directly
no test coverage detected