summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-11-07 23:57:20 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-11-07 23:57:20 (GMT)
commit3d26b95ca7ad0f2a39f39606acf2935eb4344e67 (patch)
treed1a50ef884caa7bbe5b804b67a805a00fc65f291 /Misc
parent1fa0c3f5bf2349ffa231608f25de2912479d89bd (diff)
downloadcpython-3d26b95ca7ad0f2a39f39606acf2935eb4344e67.zip
cpython-3d26b95ca7ad0f2a39f39606acf2935eb4344e67.tar.gz
cpython-3d26b95ca7ad0f2a39f39606acf2935eb4344e67.tar.bz2
Merged revisions 76146 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r76146 | brett.cannon | 2009-11-07 15:55:05 -0800 (Sat, 07 Nov 2009) | 6 lines When trying to write new bytecode, importlib was not catching the IOError thrown if the file happened to be read-only to keep the failure silent. Fixes issue #7187. Thanks, Dave Malcolm for the report and analysis of the problem. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 7715730..f32b46b 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -466,6 +466,7 @@ Nick Maclaren
Don MacMillen
Steve Majewski
Grzegorz Makarewicz
+Dave Malcolm
Ken Manheimer
Vladimir Marangozov
David Marek
diff --git a/Misc/NEWS b/Misc/NEWS
index 2ce6070..51dae2a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
+- Issue #7187: Importlib would not silence the IOError raised when trying to
+ write new bytecode when it was made read-only.
+
- Issue #7264: Fix a possible deadlock when deallocating thread-local objects
which are part of a reference cycle.