(self)
| 3244 | self.check_note(RuntimeError(1), "1") |
| 3245 | |
| 3246 | def test_multiple_args(self): |
| 3247 | msg_re = r"^\('a', 'b', 'c'\)$" |
| 3248 | self.check_note(RuntimeError('a', 'b', 'c'), msg_re) |
| 3249 | |
| 3250 | # http://bugs.python.org/issue19609 |
| 3251 | def test_codec_lookup_failure(self): |
nothing calls this directly
no test coverage detected