(self)
| 4063 | self.assertEqual(strptime("UTC", "%Z").tzinfo, None) |
| 4064 | |
| 4065 | def test_strptime_errors(self): |
| 4066 | for tzstr in ("-2400", "-000", "z"): |
| 4067 | with self.assertRaises(ValueError): |
| 4068 | self.theclass.strptime(tzstr, "%z") |
| 4069 | |
| 4070 | def test_strptime_single_digit(self): |
| 4071 | # bpo-34903: Check that single digit times are allowed. |
nothing calls this directly
no test coverage detected