add py3k warnings to rfc822
diff --git a/Lib/rfc822.py b/Lib/rfc822.py
index 14cc729..4382a51 100644
--- a/Lib/rfc822.py
+++ b/Lib/rfc822.py
@@ -73,6 +73,9 @@
import time
+from warnings import warnpy3k
+warnpy3k("in 3.x, rfc822 has been removed in favor of the email package")
+
__all__ = ["Message","AddressList","parsedate","parsedate_tz","mktime_tz"]
_blanklines = ('\r\n', '\n') # Optimization for islast()
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py
index b2dc8cd..a289cc7 100644
--- a/Lib/test/test_py3kwarn.py
+++ b/Lib/test/test_py3kwarn.py
@@ -198,7 +198,7 @@
# import side-effect.
all_platforms = ('audiodev', 'imputil', 'mutex', 'user', 'new', 'rexec',
'Bastion', 'compiler', 'dircache', 'mimetools', 'fpformat',
- 'ihooks', 'mhlib', 'statvfs', 'htmllib', 'sgmllib')
+ 'ihooks', 'mhlib', 'statvfs', 'htmllib', 'sgmllib', 'rfc822')
inclusive_platforms = {'irix' : ('pure', 'AL', 'al', 'CD', 'cd', 'cddb',
'cdplayer', 'CL', 'cl', 'DEVICE', 'GL',
'gl', 'ERRNO', 'FILE', 'FL', 'flp', 'fl',
diff --git a/Lib/test/test_rfc822.py b/Lib/test/test_rfc822.py
index 197887d..afbc984 100644
--- a/Lib/test/test_rfc822.py
+++ b/Lib/test/test_rfc822.py
@@ -1,7 +1,8 @@
-import rfc822
import unittest
from test import test_support
+rfc822 = test_support.import_module("rfc822", deprecated=True)
+
try:
from cStringIO import StringIO
except ImportError: