summaryrefslogtreecommitdiff
path: root/src/mailman/app/docs
diff options
context:
space:
mode:
authorBarry Warsaw2012-04-25 22:08:22 -0400
committerBarry Warsaw2012-04-25 22:08:22 -0400
commit658fad42b04420962e6ac478247411ee77483d93 (patch)
treedb16a22376b7191910bf674304c847850169144f /src/mailman/app/docs
parent4488631dff02731ff03f2fef01ee27bbd944812b (diff)
downloadmailman-658fad42b04420962e6ac478247411ee77483d93.tar.gz
mailman-658fad42b04420962e6ac478247411ee77483d93.tar.zst
mailman-658fad42b04420962e6ac478247411ee77483d93.zip
General code cleanup.
- Add explicit dependency on zope.event in setup.py. - Use Python 3 compatible syntax for specifying that a class implements an interface, i.e. the @implementer class decorator. - print_function futures. - Whitespace normalization.
Diffstat (limited to 'src/mailman/app/docs')
-rw-r--r--src/mailman/app/docs/lifecycle.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/app/docs/lifecycle.rst b/src/mailman/app/docs/lifecycle.rst
index 08a25ccff..9a3337123 100644
--- a/src/mailman/app/docs/lifecycle.rst
+++ b/src/mailman/app/docs/lifecycle.rst
@@ -44,10 +44,10 @@ Creating a list applies its styles
Start by registering a test style.
::
- >>> from zope.interface import implements
+ >>> from zope.interface import implementer
>>> from mailman.interfaces.styles import IStyle
- >>> class TestStyle(object):
- ... implements(IStyle)
+ >>> @implementer(IStyle)
+ ... class TestStyle(object):
... name = 'test'
... priority = 10
... def apply(self, mailing_list):