Skip to content

Commit c1a9535

Browse files
authored
bpo-43955: Handle the case where the distutils warning has already been triggered (GH-25675)
1 parent 4c49be7 commit c1a9535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_distutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from test.support import warnings_helper
1111

1212
with warnings_helper.check_warnings(
13-
("The distutils package is deprecated", DeprecationWarning)):
13+
("The distutils package is deprecated", DeprecationWarning), quiet=True):
1414

1515
import distutils.tests
1616

0 commit comments

Comments
 (0)