~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/handlers/member_recipients.py

  • Committer: Barry Warsaw
  • Date: 2015-01-05 01:20:33 UTC
  • mfrom: (7264.4.66 py3)
  • Revision ID: barry@list.org-20150105012033-zdrw9c2odhpf22fz
Merge the Python 3 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
SendmailDeliver and BulkDeliver modules.
24
24
"""
25
25
 
26
 
from __future__ import absolute_import, print_function, unicode_literals
27
 
 
28
 
__metaclass__ = type
29
26
__all__ = [
30
27
    'MemberRecipients',
31
28
    ]
32
29
 
33
30
 
34
 
from zope.interface import implementer
35
 
 
36
31
from mailman.config import config
37
32
from mailman.core import errors
38
33
from mailman.core.i18n import _
39
34
from mailman.interfaces.handler import IHandler
40
35
from mailman.interfaces.member import DeliveryStatus
41
36
from mailman.utilities.string import wrap
 
37
from zope.interface import implementer
42
38
 
43
39
 
44
40