diff options
author | Georg Brandl <georg@python.org> | 2010-10-06 10:26:05 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-06 10:26:05 +0000 |
commit | d7b49a979a9231860371384c3ec584ac40ef1208 (patch) | |
tree | 384dd8cc60483a7d16f7200a0b032bc8177bd628 /Doc/library/wsgiref.rst | |
parent | ca5e3578ebc5138a193b77f3b0c0c631e2a72359 (diff) | |
download | cpython-d7b49a979a9231860371384c3ec584ac40ef1208.tar.gz |
Fix errors found by "make suspicious".
Diffstat (limited to 'Doc/library/wsgiref.rst')
-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 64201623a3..fda9e70e5c 100644 --- a/Doc/library/wsgiref.rst +++ b/Doc/library/wsgiref.rst @@ -708,7 +708,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 envrironment variables and the - # second variable is the callable object (see :pep:`333`) + # second variable is the callable object (see PEP 333). def hello_world_app(environ, start_response): status = b'200 OK' # HTTP Status headers = [(b'Content-type', b'text/plain; charset=utf-8')] # HTTP Headers |