(self)
| 15 | |
| 16 | class TestPythonFloat: |
| 17 | def test_singleton(self): |
| 18 | ftype = finfo(float) |
| 19 | ftype2 = finfo(float) |
| 20 | assert_equal(id(ftype), id(ftype2)) |
| 21 | |
| 22 | class TestHalf: |
| 23 | def test_singleton(self): |
nothing calls this directly
no test coverage detected