diff options
author | Éric Araujo <merwok@netwok.org> | 2011-07-31 18:47:47 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-07-31 18:47:47 (GMT) |
commit | b85b966de6aa1b5b5584c294656a7f574f492cc0 (patch) | |
tree | bf614bfd67ce1d2acba29db775b12f23ac80e6f2 /Misc | |
parent | 56ec5fe950da9903ec9fc614e8d0a9b4b7f6f95f (diff) | |
download | cpython-b85b966de6aa1b5b5584c294656a7f574f492cc0.zip cpython-b85b966de6aa1b5b5584c294656a7f574f492cc0.tar.gz cpython-b85b966de6aa1b5b5584c294656a7f574f492cc0.tar.bz2 |
Stop trying to write into the stdlib during packaging tests (#12331).
This prevents tests from failing when run from a Python installed in a
read-only directory. The code is a bit uglier; shutil.copytree calls
copystat on directories behind our back, so I had to add an os.walk
with os.chmod (*and* os.path.join!) calls. shutil, I am disappoint.
This changeset is dedicated to the hundreds of neurons that were lost
while I was debugging this on an otherwise fine afternoon.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1147,6 +1147,9 @@ Extension Modules Tests ----- +- Issue #12331: The test suite for the packaging module can now run from an + installed Python. + - Issue #12331: The test suite for lib2to3 can now run from an installed Python. |