diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-05-30 21:48:58 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-05-30 21:48:58 +0000 |
commit | 42bc49673991ad38666b32a160f4c23fb69db5f3 (patch) | |
tree | dcaa9a7f5fe50e404d2b2325239d95a22734cc6a /Lib/test/test___all__.py | |
parent | a7c3760ddb46227f81edfbda39c1e8e5299b5fa6 (diff) | |
download | cpython-42bc49673991ad38666b32a160f4c23fb69db5f3.tar.gz |
Have mimify raise a DeprecationWarning. The docs and PEP 4 have listed the
module as deprecated for a while.
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r-- | Lib/test/test___all__.py | 2 |
1 files changed, 2 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): |