summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-01 03:51:24 (GMT)
committerGitHub <noreply@github.com>2023-11-01 03:51:24 (GMT)
commit2162512d717e1a7f2bb24b31713ebce23542a2a2 (patch)
tree92520e1e6977ab5d8d459df2809dab74e2668d17 /Misc/NEWS.d
parent21c8fbf28dda1f338303295b094b9cc365d101b2 (diff)
downloadcpython-2162512d717e1a7f2bb24b31713ebce23542a2a2.zip
cpython-2162512d717e1a7f2bb24b31713ebce23542a2a2.tar.gz
cpython-2162512d717e1a7f2bb24b31713ebce23542a2a2.tar.bz2
[3.12] gh-110367: Make regrtest --verbose3 compatible with --huntrleaks -jN (GH-111577) (#111589)
gh-110367: Make regrtest --verbose3 compatible with --huntrleaks -jN (GH-111577) "./python -m test -j1 -R 3:3 --verbose3" now works as expected, since run_single_test() does not replace sys.stdout with StringIO in this case. (cherry picked from commit d9a5530d2327efa1fe66a04d31b5c67e42dbcd9c) Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Tests/2023-10-31-22-09-25.gh-issue-110367.UhQi44.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2023-10-31-22-09-25.gh-issue-110367.UhQi44.rst b/Misc/NEWS.d/next/Tests/2023-10-31-22-09-25.gh-issue-110367.UhQi44.rst
new file mode 100644
index 0000000..0254288
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2023-10-31-22-09-25.gh-issue-110367.UhQi44.rst
@@ -0,0 +1,3 @@
+Make regrtest ``--verbose3`` option compatible with ``--huntrleaks -jN``
+options. The ``./python -m test -j1 -R 3:3 --verbose3`` command now works as
+expected. Patch by Victor Stinner.