summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-07 21:49:44 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-07 21:49:44 (GMT)
commit5a72e76b6938941547dd25f9198db7d17fa36960 (patch)
tree4f33a626ea04bcfdef0ed0dc2ac007f8d814d889 /Misc
parent1f1613f0ccecaa8b87310caec39fc2b274205f73 (diff)
downloadcpython-5a72e76b6938941547dd25f9198db7d17fa36960.zip
cpython-5a72e76b6938941547dd25f9198db7d17fa36960.tar.gz
cpython-5a72e76b6938941547dd25f9198db7d17fa36960.tar.bz2
Merged revisions 87834 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87834 | antoine.pitrou | 2011-01-07 22:43:59 +0100 (ven., 07 janv. 2011) | 5 lines Issue #8020: Avoid a crash where the small objects allocator would read non-Python managed memory while it is being modified by another thread. Patch by Matt Bandy. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS11
2 files changed, 12 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index aca3873..8f55c5d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -41,6 +41,7 @@ Stig Bakken
Greg Ball
Luigi Ballabio
Jeff Balogh
+Matt Bandy
Michael J. Barber
Chris Barker
Nick Barnes
diff --git a/Misc/NEWS b/Misc/NEWS
index 924f1f0..e436278 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,10 @@ What's New in Python 2.7.2?
Core and Builtins
-----------------
+- Issue #8020: Avoid a crash where the small objects allocator would read
+ non-Python managed memory while it is being modified by another thread.
+ Patch by Matt Bandy.
+
- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime()
can now handle dates after 2038.
@@ -25,6 +29,13 @@ Core and Builtins
Library
-------
+- Issue #10827: Changed the rules for 2-digit years. The time.asctime
+ function will now format any year when ``time.accept2dyear`` is
+ false and will accept years >= 1000 otherwise. The year range
+ accepted by ``time.mktime`` and ``time.strftime`` is still system
+ dependent, but ``time.mktime`` will now accept full range supported
+ by the OS. Conversion of 2-digit years to 4-digit is deprecated.
+
- Issue #7858: Raise an error properly when os.utime() fails under Windows
on an existing file.