commit | 0b3263b073245e29b83fd8795c085ac96205dee0 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Dec 10 06:00:33 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Dec 10 06:00:33 2009 +0000 |
tree | 65079f23cc0f14859f0d5d2e5576ade88240ad95 | |
parent | 5fb877027b4284e6cef49bea7157b11d3d938a7b [diff] [blame] |
Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)
diff --git a/Misc/NEWS b/Misc/NEWS index 845ed7a..3cd0b42 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -513,6 +513,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.