diff options
-rw-r--r-- | wsgitools/filters.py | 8 |
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) |