~rashi007/mailman/docsfix

« back to all changes in this revision

Viewing changes to src/mailman/testing/helpers.py

  • Committer: Barry Warsaw
  • Date: 2015-01-05 01:40:47 UTC
  • Revision ID: barry@list.org-20150105014047-3ckex6ppxujtrkkj
We don't need the 'six' package any more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
from mailman.interfaces.usermanager import IUserManager
68
68
from mailman.runners.digest import DigestRunner
69
69
from mailman.utilities.mailbox import Mailbox
70
 
from six.moves.urllib_error import HTTPError
71
 
from six.moves.urllib_parse import urlencode
 
70
from urllib.error import HTTPError
 
71
from urllib.parse import urlencode
72
72
from zope import event
73
73
from zope.component import getUtility
74
74