~rashi007/mailman/docsfix

« back to all changes in this revision

Viewing changes to src/mailman/commands/cli_qfile.py

  • Committer: Barry Warsaw
  • Date: 2014-12-01 02:51:03 UTC
  • mto: (7264.4.22 py3)
  • mto: This revision was merged to the branch mainline in revision 7285.
  • Revision ID: barry@list.org-20141201025103-jvkuq92sptrrngiz
Checkpointing.

By using `six` I think I have most of the imports squared away.  There's
probably still uses of `unicode` built-ins that need fixing.

The idea is to first get the test suite running (which it doesn't yet), and
then to fix tests.

There's a bug in lazr.config which requires us to patch it for now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    ]
26
26
 
27
27
 
28
 
import cPickle
29
 
 
30
 
from pprint import PrettyPrinter
31
 
from zope.interface import implementer
32
 
 
33
28
from mailman.core.i18n import _
34
29
from mailman.interfaces.command import ICLISubCommand
35
30
from mailman.utilities.interact import interact
 
31
from pprint import PrettyPrinter
 
32
from six.moves import cPickle
 
33
from zope.interface import implementer
36
34
 
37
35
 
38
36
m = []