summaryrefslogtreecommitdiff
path: root/Doc/library/wsgiref.rst
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-05-13 04:55:24 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2008-05-13 04:55:24 +0000
commit83c377dd5990795fa0905d03ea6dc63c700537a0 (patch)
treea904ac41c394c5a9550f81e94f856739305eccc5 /Doc/library/wsgiref.rst
parent21490dca222db588b54acc5f0824d62f14b2d7e3 (diff)
downloadcpython-83c377dd5990795fa0905d03ea6dc63c700537a0.tar.gz
Convert a lot of print statements to print functions in docstrings,
documentation, and unused/rarely used functions.
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 55d780fbd9..2437bcd7c3 100644
--- a/Doc/library/wsgiref.rst
+++ b/Doc/library/wsgiref.rst
@@ -132,7 +132,7 @@ parameter expect a WSGI-compliant dictionary to be supplied; please see
return ret
httpd = make_server('', 8000, simple_app)
- print "Serving on port 8000..."
+ print("Serving on port 8000...")
httpd.serve_forever()