(self)
| 3230 | self.check_note(exc, "^{}$".format(msg)) |
| 3231 | |
| 3232 | def test_non_str_arg(self): |
| 3233 | self.check_note(RuntimeError(1), "1") |
| 3234 | |
| 3235 | def test_multiple_args(self): |
| 3236 | msg_re = r"^\('a', 'b', 'c'\)$" |
nothing calls this directly
no test coverage detected