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 vstinner
Recipients Arfrever, Guy.Kisel, barry, belopolsky, ncoghlan, vstinner
Date 2011-02-17.21:38:23
SpamBayes Score 5.2563105e-06
Marked as misclassified No
Message-id <1297978706.31.0.865475762639.issue11235@psf.upfronthosting.co.za>
In-reply-to
Content
The problem occurs on import (import bla reads bla.py), when Python tries to create bla.pyc. The problem is that Python stores the timestamp as 4 bytes in .pyc files, whereas time_t is 64 bits on Windows (at least on Windows XP with Visual Studio).

To support bigger timestamps, we have to change the file format of .pyc files. It cannot be done in Python 2.7, I propose to do it in Python 3.3

See also #5537 and #4379: other issues with 64 bits => 32 bits timestamps.
History
Date User Action Args
2011-02-17 21:38:26vstinnersetrecipients: + vstinner, barry, ncoghlan, belopolsky, Arfrever, Guy.Kisel
2011-02-17 21:38:26vstinnersetmessageid: <1297978706.31.0.865475762639.issue11235@psf.upfronthosting.co.za>
2011-02-17 21:38:23vstinnerlinkissue11235 messages
2011-02-17 21:38:23vstinnercreate