summaryrefslogtreecommitdiff
path: root/src/mailman/rest/traverse.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-08-06 17:05:53 -0400
committerBarry Warsaw2009-08-06 17:05:53 -0400
commit7116eecc6b0daddf7dd5fa1609d86de9747b5a4c (patch)
tree236f3df14cb4e601173d2e9a385a69e87d5caa43 /src/mailman/rest/traverse.py
parent4b1801884af113a1015349d089a6b93e15de41cf (diff)
downloadmailman-7116eecc6b0daddf7dd5fa1609d86de9747b5a4c.tar.gz
mailman-7116eecc6b0daddf7dd5fa1609d86de9747b5a4c.tar.zst
mailman-7116eecc6b0daddf7dd5fa1609d86de9747b5a4c.zip
Diffstat (limited to 'src/mailman/rest/traverse.py')
-rw-r--r--src/mailman/rest/traverse.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mailman/rest/traverse.py b/src/mailman/rest/traverse.py
index 2aef47709..ee8f3925c 100644
--- a/src/mailman/rest/traverse.py
+++ b/src/mailman/rest/traverse.py
@@ -17,6 +17,10 @@
"""Traversal rules for the Mailman RESTful admin web service."""
+# XXX BAW 2009-08-06 Can we get rid of this module? It only seems to be used
+# for NotFound traversals from the top level. See the failure in basic.txt if
+# we remove this module.
+
from __future__ import absolute_import, unicode_literals
__metaclass__ = type
@@ -27,12 +31,8 @@ __all__ = [
from urllib import unquote
-from zope.component import adapts
from zope.interface import implements
from zope.publisher.interfaces import IPublishTraverse, NotFound
-from zope.publisher.interfaces.browser import IDefaultBrowserLayer
-
-from mailman.interfaces.rest import IHasGet