Fix variants of deque.extend:  d.extend(d)   d+=d  d.extendleft(d)
diff --git a/Misc/NEWS b/Misc/NEWS
index d6c3e97..700a1ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -55,6 +55,8 @@
 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.