summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-04-29 12:51:54 +0800
committerSenthil Kumaran <senthil@uthcode.com>2012-04-29 12:51:54 +0800
commit1aacba497bfb816d16dc39c09cae3ae17d6d74a2 (patch)
treef8d7bacfeecc341aa72df5546f09df14a5339ed0 /Misc
parent0ce1649674cdd9bc3351f9b98edc1ae3ce3162fa (diff)
downloadcpython-git-1aacba497bfb816d16dc39c09cae3ae17d6d74a2.tar.gz
Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead of client hostname
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3b5cbda26d..83f2e3ea04 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,9 @@ Core and Builtins
Library
-------
+- Issue #6085: In http.server.py SimpleHTTPServer.address_string returns the
+ client ip address instead client hostname. Patch by Charles-François Natali.
+
- Issue #14309: Deprecate time.clock(), use time.perf_counter() or
time.process_time() instead.