Running an addon that tries to save LWPCookieJar on nightly build on Rpi 3 B+.
Code
Starting Kodi (19.0-ALPHA1 Git:e50950a). Platform: Linux ARM 32-bit
NOTICE: Using Release Kodi x32 build (version for Raspberry Pi)
NOTICE: Kodi compiled 2020-02-08 by GCC 9.2.0 for Linux ARM 32-bit version 5.4.18 (328722)
NOTICE: Running on BCM2835 with LibreELEC (Milhouse): devel-20200208210313-#0208-g75e2e56 [Build #0208] 9.80, kernel: Linux ARM 32-bit version 5.4.18
NOTICE: FFmpeg version/source: 4.2.2-Kodi
NOTICE: Host CPU: ARMv7 Processor rev 4 (v7l), 4 cores available
...
s = requests.Session()
s.cookies = LWPCookieJar(path_to_mycookies_file)
...
s.cookies.save(ignore_discard=True)
DEBUG: File "/usr/lib/python3.7/cookiejar.py", line 1895, in save
DEBUG: File "/usr/lib/python3.7/cookiejar.py", line 1882, in as_lwp_str
DEBUG: File "/usr/lib/python3.7/cookiejar.py", line 1843, in lwp_cookie_str
DEBUG: File "/usr/lib/python3.7/cookiejar.py", line 101, in time2isoz
DEBUG: OverflowError: timestamp out of range for platform time_t
Display More
Switching from LWPCookieJar to MozillaCookieJar solves the issue but I guess something is wrong there as LWPCookiejar works fine on 9.2
Thanks.
Jx-