Python3: fix year 2038 regression on 32-bit

This commit is contained in:
MilhouseVH 2020-02-14 01:36:26 +00:00
parent 70b69ebffa
commit 35809f208b

View File

@ -0,0 +1,27 @@
From 7c35472bc734876f940fdc71090ad3d526e95a82 Mon Sep 17 00:00:00 2001
From: MilhouseVH <milhouseVH.github@nmacleod.com>
Date: Fri, 14 Feb 2020 01:33:34 +0000
Subject: [PATCH] Fix issue 5537 - regression on 32-bit
https://bugs.python.org/issue5537
https://forum.kodi.tv/showthread.php?tid=343068&pid=2923934#pid2923934
---
Lib/http/cookiejar.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py
index d43a219..53bb391 100644
--- a/Lib/http/cookiejar.py
+++ b/Lib/http/cookiejar.py
@@ -98,7 +98,7 @@ def time2isoz(t=None):
if t is None:
dt = datetime.datetime.utcnow()
else:
- dt = datetime.datetime.utcfromtimestamp(t)
+ dt = datetime.datetime(1970, 1, 1) + datetime.timedelta(seconds=t)
return "%04d-%02d-%02d %02d:%02d:%02dZ" % (
dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second)
--
2.20.1