(s)
| 423 | F, "3/0") |
| 424 | |
| 425 | def check_invalid(s): |
| 426 | msg = "Invalid literal for Fraction: " + repr(s) |
| 427 | self.assertRaisesMessage(ValueError, msg, F, s) |
| 428 | |
| 429 | check_invalid("3/") |
| 430 | check_invalid("/2") |
nothing calls this directly
no test coverage detected