diff options
author | Helmut Grohne <helmut@subdivi.de> | 2008-07-09 22:01:38 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2008-07-09 22:01:38 +0200 |
commit | 8de06ca921e3d45c45877f5d6800779d3be75a84 (patch) | |
tree | 6cf36028a8192a9e84c0dd55786eca5205334fed /wsgitools | |
parent | 8ed010e474ef1fc5d2c1ec998741d62e2bbfe56f (diff) | |
download | wsgitools-8de06ca921e3d45c45877f5d6800779d3be75a84.tar.gz |
added some module docstrings
Diffstat (limited to 'wsgitools')
-rw-r--r-- | wsgitools/adapters.py | 7 | ||||
-rw-r--r-- | wsgitools/filters.py | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/wsgitools/adapters.py b/wsgitools/adapters.py index 48a8250..86a1412 100644 --- a/wsgitools/adapters.py +++ b/wsgitools/adapters.py @@ -1,3 +1,10 @@ +""" +There are attempts to create a new version of the WSGI standard. These +classes try to adapt the current standard to something that eventually +works out to be the next version of WSGI. For more information see +U{http://www.wsgi.org/wsgi/WSGI_2.0}. +""" + __all__ = [] from wsgitools.filters import CloseableIterator, CloseableList diff --git a/wsgitools/filters.py b/wsgitools/filters.py index 90e7dec..d98773f 100644 --- a/wsgitools/filters.py +++ b/wsgitools/filters.py @@ -1,3 +1,10 @@ +""" +This module contains a generic way to create middelwares that filter data. +The work is mainly done by the L{WSGIFilterMiddleware} class. One can write +filters by extending the L{BaseWSGIFilter} class and passing this class +(not an instance) to the C{WSGIFilterMiddleware} constructor. +""" + __all__ = [] import sys |