Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead of client hostname
diff --git a/Misc/NEWS b/Misc/NEWS
index 3b5cbda..83f2e3e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,9 @@
 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.