summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2018-08-11 13:12:07 (GMT)
committerXiang Zhang <angwerzx@126.com>2018-08-11 13:12:07 (GMT)
commit2fc46979b8c802675ca7fd51c6f2108a305001c8 (patch)
treeb902bd636f7ff13ccb048854dc525bf95359368d /Misc
parent9e840848510d20e644a19c723b803877377d3765 (diff)
downloadcpython-2fc46979b8c802675ca7fd51c6f2108a305001c8.zip
cpython-2fc46979b8c802675ca7fd51c6f2108a305001c8.tar.gz
cpython-2fc46979b8c802675ca7fd51c6f2108a305001c8.tar.bz2
bpo-34151: Improve performance of some list operations (GH-8332)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-07-25-20-26-02.bpo-34151.Q2pK9Q.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-07-25-20-26-02.bpo-34151.Q2pK9Q.rst b/Misc/NEWS.d/next/Core and Builtins/2018-07-25-20-26-02.bpo-34151.Q2pK9Q.rst
new file mode 100644
index 0000000..4f6308e
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-07-25-20-26-02.bpo-34151.Q2pK9Q.rst
@@ -0,0 +1,2 @@
+Performance of list concatenation, repetition and slicing operations is
+slightly improved. Patch by Sergey Fedoseev.