summaryrefslogtreecommitdiff
path: root/src/mailman/queue
diff options
context:
space:
mode:
authorBarry Warsaw2009-11-04 22:01:45 -0500
committerBarry Warsaw2009-11-04 22:01:45 -0500
commite9c4ba828cea939e665cc91f46bbded8fcb887f0 (patch)
tree24c94144dc911da330150a0cb4387ec9272cf8df /src/mailman/queue
parent40ad0384b82169a737f004321127d41bafe0632c (diff)
downloadmailman-e9c4ba828cea939e665cc91f46bbded8fcb887f0.tar.gz
mailman-e9c4ba828cea939e665cc91f46bbded8fcb887f0.tar.zst
mailman-e9c4ba828cea939e665cc91f46bbded8fcb887f0.zip
Diffstat (limited to 'src/mailman/queue')
-rw-r--r--src/mailman/queue/docs/archiver.txt1
-rw-r--r--src/mailman/queue/docs/lmtp.txt1
-rw-r--r--src/mailman/queue/docs/news.txt1
-rw-r--r--src/mailman/queue/docs/runner.txt1
4 files changed, 0 insertions, 4 deletions
diff --git a/src/mailman/queue/docs/archiver.txt b/src/mailman/queue/docs/archiver.txt
index e79eb6839..11fd1d98e 100644
--- a/src/mailman/queue/docs/archiver.txt
+++ b/src/mailman/queue/docs/archiver.txt
@@ -5,7 +5,6 @@ Archiving
Mailman can archive to any number of archivers that adhere to the IArchiver
interface. By default, there's a Pipermail archiver.
- >>> from mailman.app.lifecycle import create_list
>>> mlist = create_list('test@example.com')
>>> transaction.commit()
diff --git a/src/mailman/queue/docs/lmtp.txt b/src/mailman/queue/docs/lmtp.txt
index d4509aee7..5961bea50 100644
--- a/src/mailman/queue/docs/lmtp.txt
+++ b/src/mailman/queue/docs/lmtp.txt
@@ -45,7 +45,6 @@ will get a 550 error.
Once the mailing list is created, the posting address is valid.
- >>> from mailman.app.lifecycle import create_list
>>> create_list('mylist@example.com')
<mailing list "mylist@example.com" at ...>
diff --git a/src/mailman/queue/docs/news.txt b/src/mailman/queue/docs/news.txt
index a0535babc..01b554097 100644
--- a/src/mailman/queue/docs/news.txt
+++ b/src/mailman/queue/docs/news.txt
@@ -7,7 +7,6 @@ NNTP newsgroup. One of the most important things this runner does is prepare
the message for Usenet (yes, I know that NNTP is not Usenet, but this runner
was originally written to gate to Usenet, which has its own rules).
- >>> from mailman.app.lifecycle import create_list
>>> mlist = create_list('_xtest@example.com')
>>> mlist.linked_newsgroup = 'comp.lang.python'
diff --git a/src/mailman/queue/docs/runner.txt b/src/mailman/queue/docs/runner.txt
index 2c07f30ca..8438f2576 100644
--- a/src/mailman/queue/docs/runner.txt
+++ b/src/mailman/queue/docs/runner.txt
@@ -15,7 +15,6 @@ The basic architecture of qrunner is implemented in the base class that all
runners inherit from. This base class implements a .run() method that runs
continuously in a loop until the .stop() method is called.
- >>> from mailman.app.lifecycle import create_list
>>> mlist = create_list('_xtest@example.com')
Here is a very simple derived qrunner class. Queue runners use a