summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-30 00:32:52 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-03-30 00:32:52 (GMT)
commit9759dd334325f341318ff5f2ef25409a5e44dc98 (patch)
treec20e555a40c347b1a66cfb208202711a35a1b76d /Misc/NEWS
parent7f24a98a9aa01d6c548b3740fe3a5da409403c3d (diff)
downloadcpython-9759dd334325f341318ff5f2ef25409a5e44dc98.zip
cpython-9759dd334325f341318ff5f2ef25409a5e44dc98.tar.gz
cpython-9759dd334325f341318ff5f2ef25409a5e44dc98.tar.bz2
Issue #26295: When using "python3 -m test --testdir=TESTDIR", regrtest doesn't
add "test." prefix to test module names. regrtest also prepends testdir to sys.path.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 73c355d..34ef0cd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -879,6 +879,9 @@ Documentation
Tests
-----
+- Issue #26295: When using "python3 -m test --testdir=TESTDIR", regrtest
+ doesn't add "test." prefix to test module names.
+
- Issue #26523: The multiprocessing thread pool (multiprocessing.dummy.Pool)
was untested.