summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-01 08:26:10 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-01 08:26:10 (GMT)
commit42e49ac0da5849cdca269fb2747f9faf5b6c7d0c (patch)
treedf78b439a1f98dc7a313db702a83df04d9049357 /Misc/NEWS
parent8131f14de9d010358755c845babe6b1a63977aff (diff)
parentbb0dbd583bdac8f1bfb9f0a45e7014b2663d5729 (diff)
downloadcpython-42e49ac0da5849cdca269fb2747f9faf5b6c7d0c.zip
cpython-42e49ac0da5849cdca269fb2747f9faf5b6c7d0c.tar.gz
cpython-42e49ac0da5849cdca269fb2747f9faf5b6c7d0c.tar.bz2
Issue #26457: Fixed the subnets() methods in IP network classes for the case
when resulting prefix length is equal to maximal prefix length. Based on patch by Xiang Zhang.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 315167e..449f9e5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -194,6 +194,10 @@ Core and Builtins
Library
-------
+- Issue #26457: Fixed the subnets() methods in IP network classes for the case
+ when resulting prefix length is equal to maximal prefix length.
+ Based on patch by Xiang Zhang.
+
- Issue #26385: Remove the file if the internal open() call in
NamedTemporaryFile() fails. Patch by Silent Ghost.