(self)
| 556 | |
| 557 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 558 | def test_unicode_in_error_message(self): |
| 559 | str_err = re.escape( |
| 560 | "Invalid format specifier '%ЫйЯЧ' for object of type 'str'") |
| 561 | with self.assertRaisesRegex(ValueError, str_err): |
| 562 | "{a:%ЫйЯЧ}".format(a='a') |
| 563 | |
| 564 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 565 | def test_negative_zero(self): |
nothing calls this directly
no test coverage detected