summaryrefslogtreecommitdiff
path: root/src/mailman/interfaces/listmanager.py
diff options
context:
space:
mode:
authorBarry Warsaw2010-03-01 23:12:36 -0500
committerBarry Warsaw2010-03-01 23:12:36 -0500
commitb235e189e6158d3daaaebd56ed0b18baf774f8d7 (patch)
treec590d7a9a1e4111dc23dedb7e83103ea7d6f0840 /src/mailman/interfaces/listmanager.py
parentc231eb4a8c1bd593804a3a2f05f07966dcd73f18 (diff)
downloadmailman-b235e189e6158d3daaaebd56ed0b18baf774f8d7.tar.gz
mailman-b235e189e6158d3daaaebd56ed0b18baf774f8d7.tar.zst
mailman-b235e189e6158d3daaaebd56ed0b18baf774f8d7.zip
Diffstat (limited to 'src/mailman/interfaces/listmanager.py')
-rw-r--r--src/mailman/interfaces/listmanager.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mailman/interfaces/listmanager.py b/src/mailman/interfaces/listmanager.py
index f83791079..f24230852 100644
--- a/src/mailman/interfaces/listmanager.py
+++ b/src/mailman/interfaces/listmanager.py
@@ -73,25 +73,6 @@ class IListManager(Interface):
:raise `ListAlreadyExistsError` if the named list already exists.
"""
-
- def new(fqdn_listname):
- """Add a new mailing list.
-
- The mailing may not exist yet, but the domain specified in
- `fqdn_listname` must exist. This is a higher level interface than
- create() and should generally be used instead of that method.
-
- :param fqdn_listname: The fully qualified name for the new
- mailing list.
- :type fqdn_listname: string
- :return: The new mailing list
- :rtype: `IMailingList`
- :raises `BadDomainSpecificationError`: when the hostname part of
- `fqdn_listname` does not exist.
- :raises `ListAlreadyExistsError`: when the mailing list already
- exists.
- """
-
def get(fqdn_listname):
"""Return the mailing list with the given name, if it exists.