summaryrefslogtreecommitdiffstats
path: root/Doc/library/basehttpserver.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-04-29 05:39:16 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-04-29 05:39:16 (GMT)
commitfb5aebc1ccc9153508af0872accc094fdd3fd99a (patch)
treec3cbe8a8859b89c1532039208749eae6eb2f27d8 /Doc/library/basehttpserver.rst
parent114277308478d764eb01e1b054dab5d671d5e023 (diff)
downloadcpython-fb5aebc1ccc9153508af0872accc094fdd3fd99a.zip
cpython-fb5aebc1ccc9153508af0872accc094fdd3fd99a.tar.gz
cpython-fb5aebc1ccc9153508af0872accc094fdd3fd99a.tar.bz2
Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler
Diffstat (limited to 'Doc/library/basehttpserver.rst')
-rw-r--r--Doc/library/basehttpserver.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/basehttpserver.rst b/Doc/library/basehttpserver.rst
index 98b5ce4..e5a9ebb 100644
--- a/Doc/library/basehttpserver.rst
+++ b/Doc/library/basehttpserver.rst
@@ -240,7 +240,7 @@ to a handler. Code to create and run the server looks like this::
to create custom error logging mechanisms. The *format* argument is a
standard printf-style format string, where the additional arguments to
:meth:`log_message` are applied as inputs to the formatting. The client
- address and current date and time are prefixed to every message logged.
+ ip address and current date and time are prefixed to every message logged.
.. method:: version_string()