summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-07-07 01:06:13 +0000
committerR. David Murray <rdmurray@bitdance.com>2009-07-07 01:06:13 +0000
commit23a736a4f06cabf9c1f1b57fd6bd7b4fabc8ca08 (patch)
tree8240215ab40961077fa9e95925677cbb2381c315
parente670e5ad5b7ef6b464fb264b688d96b9b9f71b53 (diff)
downloadcpython-git-23a736a4f06cabf9c1f1b57fd6bd7b4fabc8ca08.tar.gz
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.
-rw-r--r--Lib/test/test_import.py19
-rw-r--r--Misc/NEWS3
-rw-r--r--Python/import.c4
3 files changed, 25 insertions, 1 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
index 9b75b04bce..ea15f011b4 100644
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -1,5 +1,6 @@
import unittest
import os
+import stat
import random
import shutil
import sys
@@ -91,6 +92,23 @@ class ImportTest(unittest.TestCase):
finally:
del sys.path[0]
+ @unittest.skipUnless(os.name == 'posix', "test meaningful only on posix systems")
+ def test_execute_bit_not_copied(self):
+ # Issue 6070: under posix .pyc files got their execute bit set if
+ # the .py file had the execute bit set, but they aren't executable.
+ try:
+ fname = TESTFN + os.extsep + "py"
+ f = open(fname, 'w').close()
+ os.chmod(fname, (stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH |
+ stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH))
+ __import__(TESTFN)
+ s = os.stat(fname + 'c')
+ self.assertEquals(stat.S_IMODE(s.st_mode),
+ stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)
+ finally:
+ remove_files(TESTFN)
+ del sys.modules[TESTFN]
+
def testImpModule(self):
# Verify that the imp module can correctly load and find .py files
import imp
@@ -232,6 +250,7 @@ class ImportTest(unittest.TestCase):
else:
self.fail("import by path didn't raise an exception")
+
class TestPycRewriting(unittest.TestCase):
# Test that the `co_filename` attribute on code objects always points
# to the right file, even when various things happen (e.g. both the .py
diff --git a/Misc/NEWS b/Misc/NEWS
index 65efcfcbb2..4b88981c9b 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.
diff --git a/Python/import.c b/Python/import.c
index 88aced06d1..46a1acc6a2 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -881,7 +881,9 @@ write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat)
{
FILE *fp;
time_t mtime = srcstat->st_mtime;
- mode_t mode = srcstat->st_mode;
+#ifndef MS_WINDOWS
+ mode_t mode = srcstat->st_mode & ~S_IXUSR & ~S_IXGRP & ~S_IXOTH;
+#endif
fp = open_exclusive(cpathname, mode);
if (fp == NULL) {