From 20cd4381f5ebc203ae6bc0d616a4b71831f8b582 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 20 Sep 2008 13:00:36 +0200 Subject: epydoc syntax fixes in wsgitools.filters --- wsgitools/filters.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'wsgitools') 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) -- cgit v1.2.3