summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-06-01 14:20:27 (GMT)
committerGitHub <noreply@github.com>2017-06-01 14:20:27 (GMT)
commit95b4da2be4aeb74ee46ddece71f2075b32915c60 (patch)
treef906147f98ac1b3d23152f9ca8724512db6ce11f /Misc/NEWS
parent9d752aa5e695d682f3cfc40655580900b132e52a (diff)
downloadcpython-95b4da2be4aeb74ee46ddece71f2075b32915c60.zip
cpython-95b4da2be4aeb74ee46ddece71f2075b32915c60.tar.gz
cpython-95b4da2be4aeb74ee46ddece71f2075b32915c60.tar.bz2
bpo-30378: Fix the problem that SysLogHandler can't handle IPv6 addresses (#1676) (#1903)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 600da2d..86dd1b4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,9 @@ Core and Builtins
Library
-------
+- bpo-30378: Fix the problem that logging.handlers.SysLogHandler cannot
+ handle IPv6 addresses.
+
- bpo-29960: Preserve generator state when _random.Random.setstate()
raises an exception. Patch by Bryan Olson.