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