summaryrefslogtreecommitdiff
path: root/Lib/test/test___all__.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-05-30 21:48:58 +0000
committerBrett Cannon <bcannon@gmail.com>2007-05-30 21:48:58 +0000
commit42bc49673991ad38666b32a160f4c23fb69db5f3 (patch)
treedcaa9a7f5fe50e404d2b2325239d95a22734cc6a /Lib/test/test___all__.py
parenta7c3760ddb46227f81edfbda39c1e8e5299b5fa6 (diff)
downloadcpython-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__.py2
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):