diff options
author | Andre Delfino <adelfino@gmail.com> | 2019-05-06 16:01:17 (GMT) |
---|---|---|
committer | Dino Viehland <dinoviehland@gmail.com> | 2019-05-06 16:01:17 (GMT) |
commit | f7b494c4d473c99ade2c8ab4e63005552f168f2b (patch) | |
tree | fe5c2872a4a372eb5b878baa73ef8a8cd286f10e /Doc | |
parent | cec01849f142ea96731b4725975b89d3af757656 (diff) | |
download | cpython-f7b494c4d473c99ade2c8ab4e63005552f168f2b.zip cpython-f7b494c4d473c99ade2c8ab4e63005552f168f2b.tar.gz cpython-f7b494c4d473c99ade2c8ab4e63005552f168f2b.tar.bz2 |
Update wsgiref.rst (#10488)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/wsgiref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst index ec51367..6edd071 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 |