diff options
author | Steve Dower <steve.dower@python.org> | 2021-04-28 15:21:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 15:21:55 (GMT) |
commit | c1a9535989cc7323099725503519a17f79d083f5 (patch) | |
tree | 4d5489658892c000038de52e31a2fc8fa11f599f /Lib | |
parent | 4c49be766897968e509c41397e0e624c25b1675d (diff) | |
download | cpython-c1a9535989cc7323099725503519a17f79d083f5.zip cpython-c1a9535989cc7323099725503519a17f79d083f5.tar.gz cpython-c1a9535989cc7323099725503519a17f79d083f5.tar.bz2 |
bpo-43955: Handle the case where the distutils warning has already been triggered (GH-25675)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_distutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py index de94da5..90bfc70 100644 --- a/Lib/test/test_distutils.py +++ b/Lib/test/test_distutils.py @@ -10,7 +10,7 @@ from test import support from test.support import warnings_helper with warnings_helper.check_warnings( - ("The distutils package is deprecated", DeprecationWarning)): + ("The distutils package is deprecated", DeprecationWarning), quiet=True): import distutils.tests |