This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bmwiedemann
Recipients bmwiedemann
Date 2018-10-15.11:22:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539602536.3.0.788709270274.issue34990@psf.upfronthosting.co.za>
In-reply-to
Content
To reproduce:
touch -d 2038-01-20 /usr/lib/python3.6/site-packages/six.py
python3 /usr/lib64/python3.6/compileall.py


  File "/usr/lib64/python3.6/compileall.py", line 198, in compile_path
    legacy=legacy, optimize=optimize)
  File "/usr/lib64/python3.6/compileall.py", line 90, in compile_dir
    legacy, optimize):
  File "/usr/lib64/python3.6/compileall.py", line 138, in compile_file
    mtime)
struct.error: 'l' format requires -2147483648 <= number <= 2147483647

It could use either 
64 bit int (requires new .pyc format with different magic number) or
unsigned 32 bit int (gives us only another 68 years)
History
Date User Action Args
2018-10-15 11:22:16bmwiedemannsetrecipients: + bmwiedemann
2018-10-15 11:22:16bmwiedemannsetmessageid: <1539602536.3.0.788709270274.issue34990@psf.upfronthosting.co.za>
2018-10-15 11:22:16bmwiedemannlinkissue34990 messages
2018-10-15 11:22:16bmwiedemanncreate