()
| 55 | return assertRaises(ValueError, "math domain error") |
| 56 | |
| 57 | def assertMathRangeError() -> Any: |
| 58 | return assertRaises(OverflowError, "math range error") |
| 59 | |
| 60 | T = TypeVar('T') |
| 61 | U = TypeVar('U') |
nothing calls this directly
no test coverage detected
searching dependent graphs…