(self)
| 39 | |
| 40 | class TestLongdouble: |
| 41 | def test_singleton(self): |
| 42 | ftype = finfo(longdouble) |
| 43 | ftype2 = finfo(longdouble) |
| 44 | assert_equal(id(ftype), id(ftype2)) |
| 45 | |
| 46 | def assert_finfo_equal(f1, f2): |
| 47 | # assert two finfo instances have the same attributes |
nothing calls this directly
no test coverage detected