Package turbomail :: Module util :: Class AddressList
[hide private]
[frames] | no frames]

Class AddressList

source code

object --+    
         |    
      list --+
             |
            AddressList

Instance Methods [hide private]
new empty list
__init__(self, addresses=[], encoding=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__repr__(self)
repr(x)
source code
 
__str__(self)
str(x)
source code
 
encode(self, encoding='ascii') source code
 
__setitem__(self, k, value)
x[i]=y
source code
 
extend(self, value)
extend list by appending elements from the iterable
source code
 
append(self, value)
append object to end
source code

Inherited from list: __add__, __contains__, __delitem__, __delslice__, __eq__, __ge__, __getattribute__, __getitem__, __getslice__, __gt__, __iadd__, __imul__, __iter__, __le__, __len__, __lt__, __mul__, __ne__, __new__, __reversed__, __rmul__, __setslice__, __sizeof__, count, index, insert, pop, remove, reverse, sort

Inherited from object: __delattr__, __format__, __reduce__, __reduce_ex__, __setattr__, __subclasshook__

Class Methods [hide private]
 
protected(cls, field) source code
Class Variables [hide private]

Inherited from list: __hash__

Properties [hide private]
  addresses
  string_addresses
Return a list of string representations of the addresses suitable for usage in an SMTP transaction.

Inherited from object: __class__

Method Details [hide private]

__init__(self, addresses=[], encoding=None)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Returns: new empty list
Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__setitem__(self, k, value)
(Index assignment operator)

source code 

x[i]=y

Overrides: list.__setitem__
(inherited documentation)

extend(self, value)

source code 

extend list by appending elements from the iterable

Overrides: list.extend
(inherited documentation)

append(self, value)

source code 

append object to end

Overrides: list.append
(inherited documentation)

Property Details [hide private]

addresses

Get Method:
unreachable.addresses(self)

string_addresses

Return a list of string representations of the addresses suitable for usage in an SMTP transaction.

Get Method:
unreachable.string_addresses(self) - Return a list of string representations of the addresses suitable for usage in an SMTP transaction.