summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-07 21:49:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-07 21:49:25 (GMT)
commit5b6fc639988c673a401ca3820479a4cce979753e (patch)
treed4328473ec52aaaaf850183b4e43af10531e00f5 /Misc
parentff17385fbde2b4fcd5d309e14904a9a27a742b8c (diff)
downloadcpython-5b6fc639988c673a401ca3820479a4cce979753e.zip
cpython-5b6fc639988c673a401ca3820479a4cce979753e.tar.gz
cpython-5b6fc639988c673a401ca3820479a4cce979753e.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/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ae2d3a5..c34e381 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -39,6 +39,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 4f01ca2..d15a849 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.1.4?
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.