~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/runners/incoming.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:
26
26
immediately.
27
27
"""
28
28
 
29
 
from __future__ import absolute_import, print_function, unicode_literals
30
 
 
31
 
__metaclass__ = type
32
29
__all__ = [
33
30
    'IncomingRunner',
34
31
    ]
35
32
 
36
33
 
37
 
from zope.component import getUtility
38
 
 
39
34
from mailman.core.chains import process
40
35
from mailman.core.runner import Runner
41
36
from mailman.database.transaction import transaction
42
37
from mailman.interfaces.address import ExistingAddressError
43
38
from mailman.interfaces.usermanager import IUserManager
 
39
from zope.component import getUtility
44
40
 
45
41
 
46
42