(self)
| 1697 | compile("f'{a $ b}'", "?", "exec") |
| 1698 | |
| 1699 | def test_with_two_commas_in_format_specifier(self): |
| 1700 | error_msg = re.escape("Cannot specify ',' with ','.") |
| 1701 | with self.assertRaisesRegex(ValueError, error_msg): |
| 1702 | f'{1:,,}' |
| 1703 | |
| 1704 | def test_with_two_underscore_in_format_specifier(self): |
| 1705 | error_msg = re.escape("Cannot specify '_' with '_'.") |
nothing calls this directly
no test coverage detected