summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-07-07 13:05:59 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-07-07 13:05:59 (GMT)
commit9a9c28ce7a051b37a91e4fc7aef70bcdcda25047 (patch)
tree23e80dcda26b4e1448de538eabf2800d9752851f /Misc
parentd46f7d209b0d6db48f63c8317df9bfefbed73ae7 (diff)
downloadcpython-9a9c28ce7a051b37a91e4fc7aef70bcdcda25047.zip
cpython-9a9c28ce7a051b37a91e4fc7aef70bcdcda25047.tar.gz
cpython-9a9c28ce7a051b37a91e4fc7aef70bcdcda25047.tar.bz2
Issue 14814: Correctly return NotImplemented from ipaddress._BaseNetwork.__eq__
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d06ced8..a109baf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Core and Builtins
Library
-------
+- Issue #14814: ipaddress network objects correctly return NotImplemented
+ when compared to arbitrary objects instead of raising TypeError
+
- Issue #14990: Correctly fail with SyntaxError on invalid encoding
declaration.