We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2224f68 commit 09a3dacCopy full SHA for 09a3dac
1 file changed
Lib/test/test_time.py
@@ -198,11 +198,11 @@ def test_gmtime(self):
198
# non-leap years (pre epoch)
199
(-2203891200, (1900, 3, 1, 0, 0, 0, 3, 60)),
200
(-2203977600, (1900, 2, 28, 0, 0, 0, 2, 59)),
201
- (-5359564800, (1800, 3, 1, 0, 0, 0, 3, 60)),
202
- (-5359651200, (1800, 2, 28, 0, 0, 0, 2, 59)),
+ (-5359564800, (1800, 3, 1, 0, 0, 0, 5, 60)),
+ (-5359651200, (1800, 2, 28, 0, 0, 0, 4, 59)),
203
# leap years (pre epoch)
204
- (-2077660800, (1904, 3, 1, 0, 0, 0, 3, 61)),
205
- (-2077833600, (1904, 2, 28, 0, 0, 0, 1, 59)),
+ (-2077660800, (1904, 3, 1, 0, 0, 0, 1, 61)),
+ (-2077833600, (1904, 2, 28, 0, 0, 0, 6, 59)),
206
):
207
with self.subTest(t=t, expected=expected):
208
res = time.gmtime(t)
0 commit comments