(self)
| 3233 | self.check_note(RuntimeError(1), "1") |
| 3234 | |
| 3235 | def test_multiple_args(self): |
| 3236 | msg_re = r"^\('a', 'b', 'c'\)$" |
| 3237 | self.check_note(RuntimeError('a', 'b', 'c'), msg_re) |
| 3238 | |
| 3239 | # http://bugs.python.org/issue19609 |
| 3240 | def test_codec_lookup_failure(self): |
nothing calls this directly
no test coverage detected