summaryrefslogtreecommitdiff
path: root/wsgitools/filters.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2008-02-28 14:03:55 +0100
committerHelmut Grohne <helmut@subdivi.de>2008-02-28 14:03:55 +0100
commitda7964ce7cbdc0e28c4558caabcf36d384253ed1 (patch)
treefcf9bc383e46bfd64eacc8ebbd5a6b357f3d6ce0 /wsgitools/filters.py
parentaa85b52862c598afab383e777688feb9648cfbf0 (diff)
downloadwsgitools-da7964ce7cbdc0e28c4558caabcf36d384253ed1.tar.gz
refactored docstrings for epydoc
Diffstat (limited to 'wsgitools/filters.py')
-rw-r--r--wsgitools/filters.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/wsgitools/filters.py b/wsgitools/filters.py
index 2233431..759b20c 100644
--- a/wsgitools/filters.py
+++ b/wsgitools/filters.py
@@ -112,8 +112,9 @@ class WSGIFilterMiddleware:
"""This wsgi middleware can be used with specialized BaseWSGIFilters to
modify wsgi requests and/or reponses."""
def __init__(self, app, filterclass):
- """app is a wsgi application.
- filterclass is a subclass of BaseWSGIFilter or some class that
+ """
+ @param app: is a wsgi application.
+ @param filterclass: is a subclass of BaseWSGIFilter or some class that
implements the interface."""
self.app = app
self.filterclass = filterclass