mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
Have MimeWriter raise a DeprecationWarning as per PEP 4 and its documentation.
This commit is contained in:
parent
b4eec28e33
commit
90134c9a05
4 changed files with 13 additions and 0 deletions
|
|
@ -14,6 +14,11 @@
|
|||
|
||||
__all__ = ["MimeWriter"]
|
||||
|
||||
import warnings
|
||||
|
||||
warnings.warn("the MimeWriter module is deprecated; use the email package instead",
|
||||
DeprecationWarning, 2)
|
||||
|
||||
class MimeWriter:
|
||||
|
||||
"""Generic MIME writer.
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@
|
|||
import unittest, sys, StringIO
|
||||
from test.test_support import run_unittest
|
||||
|
||||
import warnings
|
||||
warnings.filterwarnings("ignore", "the MimeWriter module is deprecated.*",
|
||||
DeprecationWarning)
|
||||
|
||||
from MimeWriter import MimeWriter
|
||||
|
||||
SELLER = '''\
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
DeprecationWarning, "<string>")
|
||||
warnings.filterwarnings("ignore", ".*popen2 module is deprecated.*",
|
||||
DeprecationWarning)
|
||||
warnings.filterwarnings("ignore", "the MimeWriter module is deprecated.*",
|
||||
DeprecationWarning)
|
||||
|
||||
class AllTest(unittest.TestCase):
|
||||
|
||||
|
|
|
|||
|
|
@ -220,6 +220,8 @@ Core and builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- MimeWriter now raises a DeprecationWarning upon import.
|
||||
|
||||
- tarfile.py: Improved unicode support. Unicode input names are now
|
||||
officially supported. Added "errors" argument to the TarFile class.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue