~barry/mailman/lp1423756

« back to all changes in this revision

Viewing changes to src/mailman/utilities/uid.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:
21
21
and whatnot.  These are better instrumented for testing purposes.
22
22
"""
23
23
 
24
 
from __future__ import absolute_import, print_function, unicode_literals
25
 
 
26
 
__metaclass__ = type
27
24
__all__ = [
28
25
    'UniqueIDFactory',
29
26
    'factory',
35
32
import errno
36
33
 
37
34
from flufl.lock import Lock
38
 
 
39
35
from mailman.config import config
40
36
from mailman.model.uid import UID
41
37
from mailman.testing import layers