~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/interfaces/member.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
"""Interface describing the basics of a member."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'AlreadySubscribedError',
25
22
    'DeliveryMode',
37
34
 
38
35
 
39
36
from enum import Enum
 
37
from mailman.core.errors import MailmanError
40
38
from zope.interface import Interface, Attribute
41
39
 
42
 
from mailman.core.errors import MailmanError
43
 
 
44
40
 
45
41
 
46
42
class DeliveryMode(Enum):