parseaddr(): Fixed in the same way that Message.getaddrlist() was
fixed (re: SF bug #555035).  Include a unittest.
diff --git a/Lib/rfc822.py b/Lib/rfc822.py
index 826269f..0ce546c 100644
--- a/Lib/rfc822.py
+++ b/Lib/rfc822.py
@@ -495,7 +495,7 @@
 def parseaddr(address):
     """Parse an address into a (realname, mailaddr) tuple."""
     a = AddressList(address)
-    list = a.getaddrlist()
+    list = a.addresslist
     if not list:
         return (None, None)
     else: