summaryrefslogtreecommitdiff
path: root/mailman/commands/docs/end.txt
diff options
context:
space:
mode:
authorBarry Warsaw2009-01-25 13:01:41 -0500
committerBarry Warsaw2009-01-25 13:01:41 -0500
commiteefd06f1b88b8ecbb23a9013cd223b72ca85c20d (patch)
tree72c947fe16fce0e07e996ee74020b26585d7e846 /mailman/commands/docs/end.txt
parent07871212f74498abd56bef3919bf3e029eb8b930 (diff)
downloadmailman-eefd06f1b88b8ecbb23a9013cd223b72ca85c20d.tar.gz
mailman-eefd06f1b88b8ecbb23a9013cd223b72ca85c20d.tar.zst
mailman-eefd06f1b88b8ecbb23a9013cd223b72ca85c20d.zip
Diffstat (limited to 'mailman/commands/docs/end.txt')
-rw-r--r--mailman/commands/docs/end.txt37
1 files changed, 0 insertions, 37 deletions
diff --git a/mailman/commands/docs/end.txt b/mailman/commands/docs/end.txt
deleted file mode 100644
index 4f6af26cb..000000000
--- a/mailman/commands/docs/end.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-The 'end' command
-=================
-
-The mail command processor recognized an 'end' command which tells it to stop
-processing email messages.
-
- >>> command = config.commands['end']
- >>> command.name
- 'end'
- >>> command.description
- u'Stop processing commands.'
-
-The 'end' command takes no arguments.
-
- >>> command.argument_description
- ''
-
-The command itself is fairly simple; it just stops command processing, and the
-message isn't even looked at.
-
- >>> from mailman.app.lifecycle import create_list
- >>> mlist = create_list(u'test@example.com')
- >>> from mailman.Message import Message
- >>> print command.process(mlist, Message(), {}, (), None)
- ContinueProcessing.no
-
-The 'stop' command is a synonym for 'end'.
-
- >>> command = config.commands['stop']
- >>> command.name
- 'stop'
- >>> command.description
- u'Stop processing commands.'
- >>> command.argument_description
- ''
- >>> print command.process(mlist, Message(), {}, (), None)
- ContinueProcessing.no