[Python-checkins] Update wsgiref.rst (#10488)

Dino Viehland webhook-mailer at python.org
Mon May 6 12:01:22 EDT 2019


https://github.com/python/cpython/commit/f7b494c4d473c99ade2c8ab4e63005552f168f2b
commit: f7b494c4d473c99ade2c8ab4e63005552f168f2b
branch: master
author: Andre Delfino <adelfino at gmail.com>
committer: Dino Viehland <dinoviehland at gmail.com>
date: 2019-05-06T09:01:17-07:00
summary:

Update wsgiref.rst (#10488)

files:
M Doc/library/wsgiref.rst

diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst
index ec5136742fa2..6edd0714b9df 100644
--- a/Doc/library/wsgiref.rst
+++ b/Doc/library/wsgiref.rst
@@ -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



More information about the Python-checkins mailing list