.. codeauthor:: John Doe, john.doe@intra2net.com
"""
+THE_CONSTANT = None
+""" some constant with docstring *AFTER* the constant. Use this format! """
+
+
+ANOTHER_CONSTANT = 1 #: short docstring in same line -- note the #:
+
+#: constant with docstring in line above it -- note the #:
+THIRD_CONST = 3.333
+
class TestClass:
"""
Does not use :py:class:`TestClass` at all. Also has nothing to do with
the python module :py:mod:`logging.handlers`
+ Note that it is completely irrelevant what :py:data:`THE_CONSTANT` or
+ :py:data:`ANOTHER_CONSTANT` or :py:data:`THIRD_CONSTANT` are set to. I just
+ wanted to insert a link to a constant somewhere and find out how to
+ document constants
+
:param str sender: The person sending the message
:param str recipient: The recipient of the message
:param str message_body: The body of the message