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

SF #753617.  Back port candidate (but low priority).
This commit is contained in:
Barry Warsaw 2003-06-13 21:16:06 +00:00
parent 59195fdf40
commit efad5880ba
1 changed files with 0 additions and 3 deletions

View File

@ -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)