diff options
author | Raymond Hettinger <python@rcn.com> | 2009-12-10 03:03:02 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-12-10 03:03:02 (GMT) |
commit | 3f9afd816de4067b8277bfe0241cf15d34b13e47 (patch) | |
tree | 4701c6f2330249aeee9a01bd061b2cee3d064e2d /Misc | |
parent | 0f6cae0bffa52b16e09fce41c388b1ef70404c28 (diff) | |
download | cpython-3f9afd816de4067b8277bfe0241cf15d34b13e47.zip cpython-3f9afd816de4067b8277bfe0241cf15d34b13e47.tar.gz cpython-3f9afd816de4067b8277bfe0241cf15d34b13e47.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
@@ -159,6 +159,8 @@ Library - Add a reverse() method to collections.deque(). +- 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. |