We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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