summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2015-10-09 22:09:43 (GMT)
committerBrett Cannon <brett@python.org>2015-10-09 22:09:43 (GMT)
commit89065d9fc7ad9163fd270a08dface51a0cd8721c (patch)
treec2e33cbb0869717d135be10db3bb731b0dba16e3 /Misc
parent7b2cfc44655d58a6b9db99cda35220c08beb6498 (diff)
downloadcpython-89065d9fc7ad9163fd270a08dface51a0cd8721c.zip
cpython-89065d9fc7ad9163fd270a08dface51a0cd8721c.tar.gz
cpython-89065d9fc7ad9163fd270a08dface51a0cd8721c.tar.bz2
Issue #25099: Skip relevant tests in test_compileall when an entry on
sys.path has an unwritable __pycache__ directory. This typically comes up when someone runs the test suite from an administrative install of Python on Windows where the user does not have write permissions to the stdlib's directory. Thanks to Zachary Ware and Matthias Klose for reporting bugs related to this issue. (grafted from 34bbd537b3e688dfbb6498e9083445a6a72fc4b1)
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 ef39bb4..818934e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -194,6 +194,9 @@ Library
Patch from Ɓukasz Langa.
- Issue #23888: Handle fractional time in cookie expiry. Patch by ssh.
+- Issue #25099: Make test_compileall not fail when a entry on sys.path cannot
+ be written to (commonly seen in administrative installs on Windows).
+
- Issue #23004: mock_open() now reads binary data correctly when the type of
read_data is bytes. Initial patch by Aaron Hill.