[Python-checkins] r84845 - peps/trunk/pep-0444.txt
armin.ronacher
python-checkins at python.org
Thu Sep 16 12:50:07 CEST 2010
Author: armin.ronacher
Date: Thu Sep 16 12:50:07 2010
New Revision: 84845
Log:
Fixed a case where the order of arguments was wrong for PEP 444
Modified:
peps/trunk/pep-0444.txt
Modified: peps/trunk/pep-0444.txt
==============================================================================
--- peps/trunk/pep-0444.txt (original)
+++ peps/trunk/pep-0444.txt Thu Sep 16 12:50:07 2010
@@ -384,7 +384,7 @@
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
More information about the Python-checkins
mailing list