Lines Matching refs:AddressList
18 also defines a helper class :class:`AddressList` for parsing :rfc:`2822`
59 .. class:: AddressList(field)
61 You may instantiate the :class:`AddressList` helper class using a single string
299 AddressList Objects
302 An :class:`AddressList` instance has the following methods:
305 .. method:: AddressList.__len__()
310 .. method:: AddressList.__str__()
316 .. method:: AddressList.__add__(alist)
318 Return a new :class:`AddressList` instance that contains all addresses in both
319 :class:`AddressList` operands, with duplicates removed (set union).
322 .. method:: AddressList.__iadd__(alist)
324 In-place version of :meth:`__add__`; turns this :class:`AddressList` instance
328 .. method:: AddressList.__sub__(alist)
330 Return a new :class:`AddressList` instance that contains every address in the
331 left-hand :class:`AddressList` operand that is not present in the right-hand
335 .. method:: AddressList.__isub__(alist)
340 Finally, :class:`AddressList` instances have one public instance variable:
343 .. attribute:: AddressList.addresslist