summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-03-04 06:05:36 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-03-04 06:05:36 (GMT)
commitf11b25b0813a1c07ddf55cca1512ef65eb97a636 (patch)
tree545c770c505f61b94535e35acc7a85f61ae31932 /Misc
parent25c0ef518d0e9267c4d31284a3ad93d4559d84c6 (diff)
downloadcpython-f11b25b0813a1c07ddf55cca1512ef65eb97a636.zip
cpython-f11b25b0813a1c07ddf55cca1512ef65eb97a636.tar.gz
cpython-f11b25b0813a1c07ddf55cca1512ef65eb97a636.tar.bz2
properly use the ObjArgs variant of CallMethod in dictview binary operations (closes #26478)
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 f9ccc04..8db17d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #26478: Fix semantic bugs when using binary operators with dictionary
+ views and tuples.
+
- Issue #26171: Fix possible integer overflow and heap corruption in
zipimporter.get_data().