(kinds, types, op, shape, _, msg)
| 976 | |
| 977 | |
| 978 | def check_raises_re(kinds, types, op, shape, _, msg): |
| 979 | with assert_raises(RuntimeError, regex=msg): |
| 980 | check_raises(kinds, types, op, shape) |
| 981 | |
| 982 | |
| 983 | @raises( |
nothing calls this directly
no test coverage detected