diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 21:49:25 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 21:49:25 (GMT) |
commit | 5b6fc639988c673a401ca3820479a4cce979753e (patch) | |
tree | d4328473ec52aaaaf850183b4e43af10531e00f5 /Misc | |
parent | ff17385fbde2b4fcd5d309e14904a9a27a742b8c (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -39,6 +39,7 @@ Stig Bakken Greg Ball Luigi Ballabio Jeff Balogh +Matt Bandy Michael J. Barber Chris Barker Nick Barnes @@ -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. |