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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|
|
|
|
|
|