| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Also, several stylistic fixes:
- ArchiveFilter() need not be nested
- Don't use eval(str) to convert a string to an integer; it's slower
and less safe than using int(str), but be sure to catch ValueError
which might result when a bad string is given.
- Note to anyone writing Mailman/Cgi scripts! Nothing but imports
should happen as a side effect of importing this module. Run
everything from inside a main() function (see scripts/driver for
details).
- get rid of unnecessary imports
- Fix #! line, even though this script isn't typically run from the
command line.
|
| |
|
|
| |
scott
|
| | |
|
| |
|
|
|
|
|
|
| |
the Mailman package (using the semi-bogus, but quickly implemented
from ... import style).
NOTE: did *not* main()-ify, nor test since I don't have pipermail
installed. These need to happen.
|
|
|
handle logging to an error file, and no longer import paths. Also,
any checks for __main__ have been removed.
|