Fixed a case where the order of arguments was wrong for PEP 444

This commit is contained in:
Armin Ronacher 2010-09-16 10:50:07 +00:00
parent 6b4cd01d29
commit a06e8726a4
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ The application callable must accept one positional argument. For the
sake of illustration, we have named it ``environ``, but it is not
required to have this name. A server or gateway **must** invoke the
application object using a positional (not keyword) argument.
(E.g. by calling ``status, headers, body = application(environ)`` as
(E.g. by calling ``body, status, headers = application(environ)`` as
shown above.)
The ``environ`` parameter is a dictionary object, containing CGI-style