summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-26 08:11:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-26 08:11:16 (GMT)
commitf186e128b6d4e6031e1e7e97b26b3eda64c1b88f (patch)
tree432c2455ec0725e578146705326fd7bf704ffc6b /Misc
parentf4b7a02e932671c6e54e6b48340173cc859ab4c0 (diff)
downloadcpython-f186e128b6d4e6031e1e7e97b26b3eda64c1b88f.zip
cpython-f186e128b6d4e6031e1e7e97b26b3eda64c1b88f.tar.gz
cpython-f186e128b6d4e6031e1e7e97b26b3eda64c1b88f.tar.bz2
Issue #23268: Fixed bugs in the comparison of ipaddress classes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6970e80..e9ac72f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,8 @@ Core and Builtins
Library
-------
+- Issue #23268: Fixed bugs in the comparison of ipaddress classes.
+
- Issue #21408: Removed incorrect implementations of __ne__() which didn't
returned NotImplemented if __eq__() returned NotImplemented. The default
__ne__() now works correctly.