From a06e8726a4c8c627c2893473708a352bc01de15b Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Thu, 16 Sep 2010 10:50:07 +0000 Subject: [PATCH] Fixed a case where the order of arguments was wrong for PEP 444 --- pep-0444.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0444.txt b/pep-0444.txt index f37307053..52428c265 100644 --- a/pep-0444.txt +++ b/pep-0444.txt @@ -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