Commit efad5880 authored by Barry Warsaw's avatar Barry Warsaw

AddressList.__str__(): Get rid of useless, and broken method. Closes

SF #753617.  Back port candidate (but low priority).
parent 59195fdf
...@@ -441,9 +441,6 @@ class AddressList(AddrlistClass): ...@@ -441,9 +441,6 @@ class AddressList(AddrlistClass):
def __len__(self): def __len__(self):
return len(self.addresslist) return len(self.addresslist)
def __str__(self):
return COMMASPACE.join(map(dump_address_pair, self.addresslist))
def __add__(self, other): def __add__(self, other):
# Set union # Set union
newaddr = AddressList(None) newaddr = AddressList(None)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment