diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-12 14:23:49 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-12 14:23:49 (GMT) |
commit | a03722f2784f65d499b94bea348f884999922e38 (patch) | |
tree | c199c0f1e97c604b751a20b82db5c6456044b641 | |
parent | ffae306784a067c9a604856e0886fa9d5e716337 (diff) | |
download | cpython-a03722f2784f65d499b94bea348f884999922e38.zip cpython-a03722f2784f65d499b94bea348f884999922e38.tar.gz cpython-a03722f2784f65d499b94bea348f884999922e38.tar.bz2 |
deprecated mimetools
-rw-r--r-- | Doc/library/mimetools.rst | 3 | ||||
-rw-r--r-- | Lib/mimetools.py | 3 | ||||
-rw-r--r-- | Lib/test/test_mimetools.py | 5 | ||||
-rw-r--r-- | Lib/test/test_py3kwarn.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
5 files changed, 12 insertions, 3 deletions
diff --git a/Doc/library/mimetools.rst b/Doc/library/mimetools.rst index 7813867..da34173 100644 --- a/Doc/library/mimetools.rst +++ b/Doc/library/mimetools.rst @@ -9,7 +9,8 @@ .. deprecated:: 2.3 The :mod:`email` package should be used in preference to the :mod:`mimetools` - module. This module is present only to maintain backward compatibility. + module. This module is present only to maintain backward compatibility, and + it has been removed in 3.x. .. index:: module: rfc822 diff --git a/Lib/mimetools.py b/Lib/mimetools.py index 8c1cc19..5dd5396 100644 --- a/Lib/mimetools.py +++ b/Lib/mimetools.py @@ -5,6 +5,9 @@ import os import rfc822 import tempfile +from warnings import warnpy3k +warnpy3k("in 3.x, mimetools has been removed in favor of the email package") + __all__ = ["Message","choose_boundary","encode","decode","copyliteral", "copybinary"] diff --git a/Lib/test/test_mimetools.py b/Lib/test/test_mimetools.py index b0b5b01..ed01ede 100644 --- a/Lib/test/test_mimetools.py +++ b/Lib/test/test_mimetools.py @@ -1,7 +1,10 @@ import unittest from test import test_support -import string, StringIO, mimetools +import string +import StringIO + +mimetools = test_support.import_module("mimetools", deprecated=True) msgtext1 = mimetools.Message(StringIO.StringIO( """Content-Type: text/plain; charset=iso-8859-1; format=flowed diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index 768be28..b2dc8cd 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -197,7 +197,7 @@ class TestStdlibRemovals(unittest.TestCase): # test.testall not tested as it executes all unit tests as an # import side-effect. all_platforms = ('audiodev', 'imputil', 'mutex', 'user', 'new', 'rexec', - 'Bastion', 'compiler', 'dircache', 'fpformat', + 'Bastion', 'compiler', 'dircache', 'mimetools', 'fpformat', 'ihooks', 'mhlib', 'statvfs', 'htmllib', 'sgmllib') inclusive_platforms = {'irix' : ('pure', 'AL', 'al', 'CD', 'cd', 'cddb', 'cdplayer', 'CL', 'cl', 'DEVICE', 'GL', @@ -84,6 +84,8 @@ Extension Modules Library ------- +- The mimetools module has been deprecated for removal in 3.0. + - The ctypes.byref function now takes an optional second parameter which allows to specify an offset in bytes for the constructed pointer-like object. |