(self)
| 1472 | timedelta(hours=+3)) |
| 1473 | |
| 1474 | def testStrInequalityUnsupported(self): |
| 1475 | TZS = tz.tzstr('EST5EDT') |
| 1476 | |
| 1477 | self.assertFalse(TZS == 4) |
| 1478 | self.assertTrue(TZS == ComparesEqual) |
| 1479 | self.assertFalse(TZS != ComparesEqual) |
| 1480 | |
| 1481 | def testTzStrRepr(self): |
| 1482 | TZS1 = tz.tzstr('EST5EDT4') |
nothing calls this directly
no outgoing calls
no test coverage detected