8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec0184 commit f7b494cCopy full SHA for f7b494c
Doc/library/wsgiref.rst
@@ -767,7 +767,7 @@ This is a working "Hello World" WSGI application::
767
# use a function (note that you're not limited to a function, you can
768
# use a class for example). The first argument passed to the function
769
# is a dictionary containing CGI-style environment variables and the
770
- # second variable is the callable object (see PEP 333).
+ # second variable is the callable object.
771
4231 def hello_world_app(environ, start_response):
772
status = '200 OK' # HTTP Status
773
headers = [('Content-type', 'text/plain; charset=utf-8')] # HTTP Headers
0 commit comments