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