summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-09-15 16:37:27 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2013-09-15 16:37:27 (GMT)
commitdefe7f4c62b992380fdda2833bb46a6505c839f4 (patch)
treedb470d7591c9fa72ff25f4b8c052dcb78c2cccf7 /Misc
parent5642ff9d8eefb0068eeb99c31320d3c6a319ea88 (diff)
downloadcpython-defe7f4c62b992380fdda2833bb46a6505c839f4.zip
cpython-defe7f4c62b992380fdda2833bb46a6505c839f4.tar.gz
cpython-defe7f4c62b992380fdda2833bb46a6505c839f4.tar.bz2
Expose --bind argument for http.server, enable http.server to bind to a user
specified network interface. Patch contributed by Malte Swart. Addresses issue #17764. HG :Enter commit message. Lines beginning with 'HG:' are removed.
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 8845e3d..e432567 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins
Library
-------
+- Issue #17764: Enable http.server to bind to a user specified network
+ interface. Patch contributed by Malte Swart.
+
- Issue #18937: Add an assertLogs() context manager to unittest.TestCase
to ensure that a block of code emits a message using the logging module.