summaryrefslogtreecommitdiffstats
path: root/Doc/library/wsgiref.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-14 14:20:07 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-14 14:20:07 (GMT)
commit8ded477916934d9863f914535ddcd4a543d5dd0c (patch)
tree9012ea279ebb6a252c849acf25e29f2a70b1e48f /Doc/library/wsgiref.rst
parent42a0ba7b2c88b181bce603a57c69a66539dab693 (diff)
downloadcpython-8ded477916934d9863f914535ddcd4a543d5dd0c.zip
cpython-8ded477916934d9863f914535ddcd4a543d5dd0c.tar.gz
cpython-8ded477916934d9863f914535ddcd4a543d5dd0c.tar.bz2
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 a97eaec..517fc38 100644
--- a/Doc/library/wsgiref.rst
+++ b/Doc/library/wsgiref.rst
@@ -712,7 +712,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 = '200 OK' # HTTP Status
headers = [('Content-type', 'text/plain')] # HTTP Headers