diff options
| author | bwarsaw | 2006-04-15 22:58:13 +0000 |
|---|---|---|
| committer | bwarsaw | 2006-04-15 22:58:13 +0000 |
| commit | 592feaed3c2fbc9e0c8489805f818b6a9d5b13b8 (patch) | |
| tree | 2a7e0afd65fd0a751a53489e6d3d2eaf973be2a1 /Mailman/ListAdmin.py | |
| parent | fdd34dfe8926c22353e8b6defd4d538a52f4cc00 (diff) | |
| download | mailman-592feaed3c2fbc9e0c8489805f818b6a9d5b13b8.tar.gz mailman-592feaed3c2fbc9e0c8489805f818b6a9d5b13b8.tar.zst mailman-592feaed3c2fbc9e0c8489805f818b6a9d5b13b8.zip | |
Diffstat (limited to 'Mailman/ListAdmin.py')
| -rw-r--r-- | Mailman/ListAdmin.py | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/Mailman/ListAdmin.py b/Mailman/ListAdmin.py index ba486e094..f7035b5aa 100644 --- a/Mailman/ListAdmin.py +++ b/Mailman/ListAdmin.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2004 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2006 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -25,24 +25,24 @@ elsewhere. import os import time +import email import errno import cPickle import marshal -from cStringIO import StringIO -import email -from email.MIMEMessage import MIMEMessage +from cStringIO import StringIO from email.Generator import Generator +from email.MIMEMessage import MIMEMessage from email.Utils import getaddresses -from Mailman import mm_cfg -from Mailman import Utils -from Mailman import Message from Mailman import Errors -from Mailman.UserDesc import UserDesc -from Mailman.Queue.sbcache import get_switchboard -from Mailman.Logging.Syslog import syslog +from Mailman import Message +from Mailman import Utils from Mailman import i18n +from Mailman import mm_cfg +from Mailman.Logging.Syslog import syslog +from Mailman.Queue.sbcache import get_switchboard +from Mailman.UserDesc import UserDesc _ = i18n._ @@ -60,12 +60,6 @@ LOST = 2 DASH = '-' NL = '\n' -try: - True, False -except NameError: - True = 1 - False = 0 - class ListAdmin: |
