diff options
Diffstat (limited to 'Lib/mimify.py')
| -rwxr-xr-x | Lib/mimify.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/mimify.py b/Lib/mimify.py index b6f6143..1c15983 100755 --- a/Lib/mimify.py +++ b/Lib/mimify.py @@ -29,6 +29,10 @@ QUOTE = '> ' # string replies are quoted with import re +import warnings +warnings.warn("the mimify module is deprecated; use the email package instead", + DeprecationWarning, 2) + __all__ = ["mimify","unmimify","mime_encode_header","mime_decode_header"] qp = re.compile('^content-transfer-encoding:\\s*quoted-printable', re.I) |
