(self)
| 589 | dt += delta |
| 590 | |
| 591 | def testIncreasingISOFormat(self): |
| 592 | delta = timedelta(days=365+31+1, seconds=1+60+60*60) |
| 593 | dt = datetime(1900, 1, 1, 0, 0, 0, 0) |
| 594 | for i in range(200): |
| 595 | assert parse(dt.isoformat()) == dt |
| 596 | dt += delta |
| 597 | |
| 598 | def testMicrosecondsPrecisionError(self): |
| 599 | # Skip found out that sad precision problem. :-( |