summaryrefslogtreecommitdiff
path: root/wsgitools/filters.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2008-09-20 13:00:36 +0200
committerHelmut Grohne <helmut@subdivi.de>2008-09-20 13:00:36 +0200
commit20cd4381f5ebc203ae6bc0d616a4b71831f8b582 (patch)
tree0e6e69741d599b24ed7acf19db8907448e1869db /wsgitools/filters.py
parent863a8fd236b57fdb70e8008faea6f3e25bf025bb (diff)
downloadwsgitools-20cd4381f5ebc203ae6bc0d616a4b71831f8b582.tar.gz
epydoc syntax fixes in wsgitools.filters
Diffstat (limited to 'wsgitools/filters.py')
-rw-r--r--wsgitools/filters.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/wsgitools/filters.py b/wsgitools/filters.py
index 07675ba..4f01c6c 100644
--- a/wsgitools/filters.py
+++ b/wsgitools/filters.py
@@ -402,15 +402,15 @@ class ReusableWSGIInputFilter(BaseWSGIFilter):
maxrequestsize being set. If there is more data than maxrequestsize is
available in wsgi.input the rest will be ignored. (It is up to the
adapter to eat this data.)
- @type maxrequestsize int
- @param maxrequestsize is the maximum number of bytes to store in the
+ @type maxrequestsize: int
+ @param maxrequestsize: is the maximum number of bytes to store in the
StringIO
"""
return lambda:cls(maxrequestsize)
def __init__(self, maxrequestsize=65536):
"""ReusableWSGIInputFilters constructor.
- @type maxrequestsize int
- @param maxrequestsize is the maximum number of bytes to store in the
+ @type maxrequestsize: int
+ @param maxrequestsize: is the maximum number of bytes to store in the
StringIO, see creator
"""
BaseWSGIFilter.__init__(self)