summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-12-03 23:57:59 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-12-03 23:57:59 (GMT)
commit820b0ea36c9f2ad2c940f157fb69c045c6a0ad96 (patch)
tree25aeb8180ee5a60e034cd211ab0f4ccc35f2184e /Misc
parent642017224a3167d826fe490648a5d567e52c969d (diff)
downloadcpython-820b0ea36c9f2ad2c940f157fb69c045c6a0ad96.zip
cpython-820b0ea36c9f2ad2c940f157fb69c045c6a0ad96.tar.gz
cpython-820b0ea36c9f2ad2c940f157fb69c045c6a0ad96.tar.bz2
Issue 7431: use TESTFN in test_linecache instead of trying to create a
file in the Lib/test directory, which might be read-only for the user running the tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dc23e7e..2b49a3a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1695,6 +1695,10 @@ Extension Modules
Tests
-----
+- Issue #7431: use TESTFN in test_linecache instead of trying to create a
+ file in the Lib/test directory, which might be read-only for the
+ user running the tests.
+
- Issue #7324: add a sanity check to regrtest argument parsing to
catch the case of an option with no handler.