summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-09-09 20:40:11 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-09-09 20:40:11 (GMT)
commit17ebaa93d42b396a6538c8e48dfdae70bac489ee (patch)
tree93fd0c0d1a89bc95b1e47aedc8b77c7e501e1cb8 /Misc/NEWS
parent0ae505e7d39726cdc8c279c7cb4908e12a39d998 (diff)
parent29bf4d403dd2cb8875e224f50a4cfeea177d33ae (diff)
downloadcpython-17ebaa93d42b396a6538c8e48dfdae70bac489ee.zip
cpython-17ebaa93d42b396a6538c8e48dfdae70bac489ee.tar.gz
cpython-17ebaa93d42b396a6538c8e48dfdae70bac489ee.tar.bz2
Issue #24857: Comparing call_args to a long sequence now correctly returns a
boolean result instead of raising an exception. Patch by A Kaptur.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c61dc77..5859f45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -98,6 +98,9 @@ Core and Builtins
Library
-------
+- Issue #24857: Comparing call_args to a long sequence now correctly returns a
+ boolean result instead of raising an exception. Patch by A Kaptur.
+
- Issue #23144: Make sure that HTMLParser.feed() returns all the data, even
when convert_charrefs is True.