AddressList.__str__(): Get rid of useless, and broken method.  Closes
SF #753617.  Back port candidate (but low priority).
diff --git a/Lib/email/_parseaddr.py b/Lib/email/_parseaddr.py
index c56cfd0..5cb75e6 100644
--- a/Lib/email/_parseaddr.py
+++ b/Lib/email/_parseaddr.py
@@ -441,9 +441,6 @@
     def __len__(self):
         return len(self.addresslist)
 
-    def __str__(self):
-        return COMMASPACE.join(map(dump_address_pair, self.addresslist))
-
     def __add__(self, other):
         # Set union
         newaddr = AddressList(None)