diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-24 16:44:06 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-24 16:44:06 (GMT) |
commit | 2be60afb7e0753c1bd5c297960cf8686a1ec7e1e (patch) | |
tree | 59dc4e7152c3bc9141b6dc000f8c10b1384a3750 /Misc | |
parent | 7fa5a99b0693100077a556f05e3c6638b837389b (diff) | |
download | cpython-2be60afb7e0753c1bd5c297960cf8686a1ec7e1e.zip cpython-2be60afb7e0753c1bd5c297960cf8686a1ec7e1e.tar.gz cpython-2be60afb7e0753c1bd5c297960cf8686a1ec7e1e.tar.bz2 |
Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.3? Core and Builtins ----------------- +- Issue #11235: Fix OverflowError when trying to import a source file whose + modification time doesn't fit in a 32-bit timestamp. + - Fix the builtin module initialization code to store the init function for future reinitialization. |