Browse Source

bpo-43955: Handle the case where the distutils warning has already been triggered (GH-25675)

pull/25698/head
Steve Dower 5 years ago
committed by GitHub
parent
commit
c1a9535989
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Lib/test/test_distutils.py

2
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

Loading…
Cancel
Save