summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-01-24 16:44:06 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-01-24 16:44:06 (GMT)
commitd1c818a9c0a3684f57d7d00c6ec43763783ccf2a (patch)
tree6edb9b5c214c7012dbb6698ab6094def909adbab /Misc
parentdfdc46f2749e784be756855e2ef33ba1bb74e9e8 (diff)
downloadcpython-d1c818a9c0a3684f57d7d00c6ec43763783ccf2a.zip
cpython-d1c818a9c0a3684f57d7d00c6ec43763783ccf2a.tar.gz
cpython-d1c818a9c0a3684f57d7d00c6ec43763783ccf2a.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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 27e1b65..6f910be 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,9 @@ What's New in Python 2.7.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.
+
- Issue #11638: Unicode strings in 'name' and 'version' no longer cause
UnicodeDecodeErrors.