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