summaryrefslogtreecommitdiffstats
path: root/Doc/library/wsgiref.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-14 14:36:18 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-14 14:36:18 (GMT)
commit766ad36de54203f6d5af21bbb20ba375ca1d66a8 (patch)
treeb5a496928f7f2520731b815473c908f3f05464e8 /Doc/library/wsgiref.rst
parent9467b212f5dd4558443d03584e1ed9bca5a2b780 (diff)
downloadcpython-766ad36de54203f6d5af21bbb20ba375ca1d66a8.zip
cpython-766ad36de54203f6d5af21bbb20ba375ca1d66a8.tar.gz
cpython-766ad36de54203f6d5af21bbb20ba375ca1d66a8.tar.bz2
Merged revisions 81163 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81163 | victor.stinner | 2010-05-14 16:20:07 +0200 (ven., 14 mai 2010) | 2 lines Doc: replace PEP xxx by :pep:`xxx` to create a link on the PEP ........
Diffstat (limited to 'Doc/library/wsgiref.rst')
-rw-r--r--Doc/library/wsgiref.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst
index 803db26..06672ae 100644
--- a/Doc/library/wsgiref.rst
+++ b/Doc/library/wsgiref.rst
@@ -710,7 +710,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 PEP333)
+ # 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