AddressList.__str__(): Get rid of useless, and broken method. Closes
SF #753617. Back port candidate (but low priority).
This commit is contained in:
parent
59195fdf40
commit
efad5880ba
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue