(self)
| 19 | |
| 20 | class TestHalf: |
| 21 | def test_singleton(self): |
| 22 | ftype = finfo(half) |
| 23 | ftype2 = finfo(half) |
| 24 | assert_equal(id(ftype), id(ftype2)) |
| 25 | |
| 26 | class TestSingle: |
| 27 | def test_singleton(self): |
nothing calls this directly
no test coverage detected