~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/handlers/rfc_2369.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:
17
17
 
18
18
"""RFC 2369 List-* and related headers."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'RFC2369',
25
22
    ]
26
23
 
27
24
 
28
25
from email.utils import formataddr
29
 
from zope.interface import implementer
30
 
 
31
26
from mailman.core.i18n import _
32
27
from mailman.handlers.cook_headers import uheader
33
28
from mailman.interfaces.archiver import ArchivePolicy
34
29
from mailman.interfaces.mailinglist import IListArchiverSet
35
30
from mailman.interfaces.handler import IHandler
 
31
from zope.interface import implementer
36
32
 
37
33
 
38
34
CONTINUATION = ',\n\t'