diff options
author | Raymond Hettinger <python@rcn.com> | 2009-12-10 05:36:11 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-12-10 05:36:11 (GMT) |
commit | 64eaa20c68d54319c30bb75768cef0b114980893 (patch) | |
tree | da0766dd238a8276e1da8b59f67ffa82751bded2 /Misc | |
parent | 53b44f75c1f7dc2ad5e1ccd0171d8b19bbb3005a (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |