summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNicolai Moore <niconorsk@gmail.com>2019-05-14 10:32:59 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-05-14 10:32:59 (GMT)
commit5e48e3db6f5a937023e99d89cef8884d22bd8533 (patch)
treea3d3ca95253f60968046c87393d29a86b3ab7ca6 /Misc
parentf0be4bbb9b3cee876249c23f2ae6f38f43fa7495 (diff)
downloadcpython-5e48e3db6f5a937023e99d89cef8884d22bd8533.zip
cpython-5e48e3db6f5a937023e99d89cef8884d22bd8533.tar.gz
cpython-5e48e3db6f5a937023e99d89cef8884d22bd8533.tar.bz2
bpo-36845: validate integer network prefix when constructing IP networks (GH-13298)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-14-07-57-02.bpo-36845._GtFFf.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index dfb9637..ec5b017 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1108,6 +1108,7 @@ Bastien Montagne
Skip Montanaro
Peter Moody
Alan D. Moore
+Nicolai Moore
Paul Moore
Ross Moore
Ben Morgan
diff --git a/Misc/NEWS.d/next/Library/2019-05-14-07-57-02.bpo-36845._GtFFf.rst b/Misc/NEWS.d/next/Library/2019-05-14-07-57-02.bpo-36845._GtFFf.rst
new file mode 100644
index 0000000..c819dce
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-14-07-57-02.bpo-36845._GtFFf.rst
@@ -0,0 +1,2 @@
+Added validation of integer prefixes to the construction of IP networks and
+interfaces in the ipaddress module.