~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/chains/moderation.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:
34
34
members, while `hold` is the default for nonmembers.
35
35
"""
36
36
 
37
 
from __future__ import absolute_import, print_function, unicode_literals
38
 
 
39
 
__metaclass__ = type
40
37
__all__ = [
41
38
    'ModerationChain',
42
39
    ]
43
40
 
44
41
 
45
 
from zope.interface import implementer
46
 
 
47
42
from mailman.chains.base import Link
48
43
from mailman.config import config
49
44
from mailman.core.i18n import _
50
45
from mailman.interfaces.action import Action
51
46
from mailman.interfaces.chain import IChain, LinkAction
 
47
from zope.interface import implementer
52
48
 
53
49
 
54
50