]> granicus.if.org Git - python/commitdiff
Update wsgiref.rst (#10488)
authorAndre Delfino <adelfino@gmail.com>
Mon, 6 May 2019 16:01:17 +0000 (13:01 -0300)
committerDino Viehland <dinoviehland@gmail.com>
Mon, 6 May 2019 16:01:17 +0000 (09:01 -0700)
Doc/library/wsgiref.rst

index ec5136742fa2c497aeb7ddeb2df3102d1460dcf9..6edd0714b9df3b0476af39c356248ea05068fd69 100644 (file)
@@ -767,7 +767,7 @@ This is a working "Hello World" WSGI application::
    # use a function (note that you're not limited to a function, you can
    # use a class for example). The first argument passed to the function
    # is a dictionary containing CGI-style environment variables and the
-   # second variable is the callable object (see PEP 333).
+   # second variable is the callable object.
    def hello_world_app(environ, start_response):
        status = '200 OK'  # HTTP Status
        headers = [('Content-type', 'text/plain; charset=utf-8')]  # HTTP Headers