diff options
author | Raymond Hettinger <python@rcn.com> | 2013-01-12 06:29:50 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-01-12 06:29:50 (GMT) |
commit | 464d89b3ce911a63e9da14f10054bc853367eaff (patch) | |
tree | 5bcf3a7e6c7899337be1065b25fff6631583b71c /Misc | |
parent | eb9e885f7810d578e1999315948e20f7b030b702 (diff) | |
download | cpython-464d89b3ce911a63e9da14f10054bc853367eaff.zip cpython-464d89b3ce911a63e9da14f10054bc853367eaff.tar.gz cpython-464d89b3ce911a63e9da14f10054bc853367eaff.tar.bz2 |
Issue #16398: Optimize deque.rotate()
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -221,6 +221,9 @@ Library duplication. Thanks to Ronan Lamy for the report and taking an initial stab at the problem. +- Issue #16398: Optimize deque.rotate() so that it only moves pointers + and doesn't touch the underlying data with increfs and decrefs. + - Issue #16900: Issue a ResourceWarning when an ssl socket is left unclosed. - Issue #13899: \A, \Z, and \B now correctly match the A, Z, and B literals |