diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test___all__.py | 2 | ||||
-rw-r--r-- | Lib/test/test_sundry.py | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index 071ed04251..26ed012272 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -9,6 +9,8 @@ warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*", DeprecationWarning) warnings.filterwarnings("ignore", "the MimeWriter module is deprecated.*", DeprecationWarning) +warnings.filterwarnings("ignore", "the mimify module is deprecated.*", + DeprecationWarning) class AllTest(unittest.TestCase): diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index 5711fb216e..533aedc5df 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -6,6 +6,7 @@ import warnings with guard_warnings_filter(): warnings.filterwarnings('ignore', r".*posixfile", DeprecationWarning) + warnings.filterwarnings('ignore', r".*mimify", DeprecationWarning) from test.test_support import verbose |