summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-12-10 05:36:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-12-10 05:36:11 (GMT)
commit64eaa20c68d54319c30bb75768cef0b114980893 (patch)
treeda0766dd238a8276e1da8b59f67ffa82751bded2 /Misc
parent53b44f75c1f7dc2ad5e1ccd0171d8b19bbb3005a (diff)
downloadcpython-64eaa20c68d54319c30bb75768cef0b114980893.zip
cpython-64eaa20c68d54319c30bb75768cef0b114980893.tar.gz
cpython-64eaa20c68d54319c30bb75768cef0b114980893.tar.bz2
Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)
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 d6c3e97..700a1ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -55,6 +55,8 @@ Core and Builtins
Library
-------
+- Fix variations of extending deques: d.extend(d) d.extendleft(d) d+=d
+
- Issue #6986: Fix crash in the JSON C accelerator when called with the
wrong parameter types. Patch by Victor Stinner.