From 05ffca722524e36013010591f49d925d73cc9c78 Mon Sep 17 00:00:00 2001 From: Eric L Frederich Date: Tue, 4 Aug 2020 15:35:54 -0400 Subject: [PATCH] bpo-41482: Fix error in ipaddress.IPv4Network docstring --- Lib/ipaddress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ipaddress.py b/Lib/ipaddress.py index 75b4c352c1d257..bc662c415b2a49 100644 --- a/Lib/ipaddress.py +++ b/Lib/ipaddress.py @@ -1466,7 +1466,7 @@ def __init__(self, address, strict=True): address: A string or integer representing the IP [& network]. '192.0.2.0/24' '192.0.2.0/255.255.255.0' - '192.0.0.2/0.0.0.255' + '192.0.2.0/0.0.0.255' are all functionally the same in IPv4. Similarly, '192.0.2.1' '192.0.2.1/255.255.255.255'