summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-07-07 01:06:13 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-07-07 01:06:13 (GMT)
commit23a736a4f06cabf9c1f1b57fd6bd7b4fabc8ca08 (patch)
tree8240215ab40961077fa9e95925677cbb2381c315 /Misc
parente670e5ad5b7ef6b464fb264b688d96b9b9f71b53 (diff)
downloadcpython-23a736a4f06cabf9c1f1b57fd6bd7b4fabc8ca08.zip
cpython-23a736a4f06cabf9c1f1b57fd6bd7b4fabc8ca08.tar.gz
cpython-23a736a4f06cabf9c1f1b57fd6bd7b4fabc8ca08.tar.bz2
Issue 6070: when creating a compiled file, after copying the mode bits, on
posix zap the execute bit in case it was set on the .py file, since the compiled files are not directly executable on posix. Patch by Marco N.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 65efcfc..4b88981 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue 6070: On posix platforms import no longer copies the execute bit
+ from the .py file to the .pyc file if it is set. Patch by Marco N.
+
- Issue #4618: When unicode arguments are passed to print(), the default
separator and end should be unicode also.