summaryrefslogtreecommitdiff
path: root/wsgitools/filters.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2008-07-12 15:01:37 +0200
committerHelmut Grohne <helmut@subdivi.de>2008-07-12 15:01:37 +0200
commitcded5172465b7bcd8bb2d013a856a898303c4b6b (patch)
tree4312e897e6f05d321532372d4b5b18ccf6b44b9a /wsgitools/filters.py
parent3519854edbc2a1abb82e719306a074bddb8b18a7 (diff)
downloadwsgitools-cded5172465b7bcd8bb2d013a856a898303c4b6b.tar.gz
fix some comments and epydocify them
Diffstat (limited to 'wsgitools/filters.py')
-rw-r--r--wsgitools/filters.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgitools/filters.py b/wsgitools/filters.py
index d98773f..1c7d03b 100644
--- a/wsgitools/filters.py
+++ b/wsgitools/filters.py
@@ -61,7 +61,7 @@ class CloseableList(list):
__all__.append("BaseWSGIFilter")
class BaseWSGIFilter:
- """Generic WSGI filter class to be used with WSGIFilterMiddleware.
+ """Generic WSGI filter class to be used with L{WSGIFilterMiddleware}.
For each request a filter object gets created.
The environment is then passed through filter_environ.
@@ -145,7 +145,7 @@ class WSGIFilterMiddleware:
def __init__(self, app, filterclass):
"""
@param app: is a wsgi application.
- @type filterclass: BaseWSGIFilters subclass
+ @type filterclass: L{BaseWSGIFilter}s subclass
@param filterclass: is a subclass of BaseWSGIFilter or some class that
implements the interface."""
self.app = app