summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-10-25 15:15:50 (GMT)
committerGitHub <noreply@github.com>2023-10-25 15:15:50 (GMT)
commit6fea61a9e02260648fbec204e9caac6d5176cc7b (patch)
tree84d072291fa9d402db9dabde043526843b575877 /Lib
parent07664c9ddb5b5ee3371912fdc47da24bbbc7a6b3 (diff)
downloadcpython-6fea61a9e02260648fbec204e9caac6d5176cc7b.zip
cpython-6fea61a9e02260648fbec204e9caac6d5176cc7b.tar.gz
cpython-6fea61a9e02260648fbec204e9caac6d5176cc7b.tar.bz2
[3.11] gh-111165: Add missed "support." prefix for "verbose" (GH-111327) (GH-111329)
(cherry picked from commit a4981921aa2c00f3883ef593fde1dbc034e3c304) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/libregrtest/single.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/single.py b/Lib/test/libregrtest/single.py
index b4ae299..ad75ef5 100644
--- a/Lib/test/libregrtest/single.py
+++ b/Lib/test/libregrtest/single.py
@@ -70,7 +70,7 @@ def _run_suite(suite):
err = result.failures[0][1]
else:
err = "multiple errors occurred"
- if not verbose: err += "; run in verbose mode for details"
+ if not support.verbose: err += "; run in verbose mode for details"
errors = [(str(tc), exc_str) for tc, exc_str in result.errors]
failures = [(str(tc), exc_str) for tc, exc_str in result.failures]
raise support.TestFailedWithDetails(err, errors, failures, stats=stats)