~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/archiving/prototype.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
"""Prototypical permalinking archiver."""
19
19
 
20
 
from __future__ import absolute_import, print_function, unicode_literals
21
 
 
22
 
__metaclass__ = type
23
20
__all__ = [
24
21
    'Prototype',
25
22
    ]
30
27
import logging
31
28
 
32
29
from datetime import timedelta
 
30
from flufl.lock import Lock, TimeOutError
33
31
from mailbox import Maildir
34
 
from urlparse import urljoin
35
 
 
36
 
from flufl.lock import Lock, TimeOutError
37
 
from zope.interface import implementer
38
 
 
39
32
from mailman.config import config
40
33
from mailman.interfaces.archiver import IArchiver
 
34
from six.moves.urllib_parse import urljoin
 
35
from zope.interface import implementer
 
36
 
41
37
 
42
38
log = logging.getLogger('mailman.error')
43
39