summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-08-24 08:32:40 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-08-24 08:32:40 (GMT)
commita508770e20ac709ce9b29198bc5cf336d2e41b96 (patch)
tree9efe19b1599aba38ea7e69314e9f8640e88b05ba /Misc
parent36d188c7f7aa9ac19dc0ef075a465c18c59b81a2 (diff)
downloadcpython-a508770e20ac709ce9b29198bc5cf336d2e41b96.zip
cpython-a508770e20ac709ce9b29198bc5cf336d2e41b96.tar.gz
cpython-a508770e20ac709ce9b29198bc5cf336d2e41b96.tar.bz2
Close #2501: Permission bits are once again correctly copied from the source file to the cached bytecode file. Test by Eric Snow.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b872d2..9366130 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.3.0 Release Candidate 1?
Core and Builtins
-----------------
+- Issue #2501: Source file permission bits are once again correctly
+ copied to the cached bytecode file. (The migration to importlib
+ reintroduced this problem because these was no regression test. A test
+ has been added as part of this patch)
+
- Issue #15761: Fix crash when PYTHONEXECUTABLE is set on Mac OS X.
- Issue #15726: Fix incorrect bounds checking in PyState_FindModule.