| 5500 | self.assertEqual(0, t.tm_isdst) |
| 5501 | # Check that bad tzinfo is detected |
| 5502 | class BOFS(DST): |
| 5503 | def utcoffset(self, dt): |
| 5504 | return "EST" |
| 5505 | d = cls(1, 2, 3, 10, 20, 30, 40, tzinfo=BOFS()) |
| 5506 | self.assertRaises(TypeError, d.utctimetuple) |
| 5507 |
no outgoing calls
searching dependent graphs…