summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-01-12 06:29:50 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-01-12 06:29:50 (GMT)
commit464d89b3ce911a63e9da14f10054bc853367eaff (patch)
tree5bcf3a7e6c7899337be1065b25fff6631583b71c /Misc
parenteb9e885f7810d578e1999315948e20f7b030b702 (diff)
downloadcpython-464d89b3ce911a63e9da14f10054bc853367eaff.zip
cpython-464d89b3ce911a63e9da14f10054bc853367eaff.tar.gz
cpython-464d89b3ce911a63e9da14f10054bc853367eaff.tar.bz2
Issue #16398: Optimize deque.rotate()
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fcd309d..f7ef21e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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