summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@gmail.com>2019-11-26 06:16:53 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-11-26 06:16:53 (GMT)
commit6dd9b64770af8905bef293c81d541eaaf8d8df52 (patch)
tree735a69a00b2e5b4574916a25c2b36a5611c572a9 /Misc
parente4db1f05e9a5828f6b287f99067362fa0e5732e8 (diff)
downloadcpython-6dd9b64770af8905bef293c81d541eaaf8d8df52.zip
cpython-6dd9b64770af8905bef293c81d541eaaf8d8df52.tar.gz
cpython-6dd9b64770af8905bef293c81d541eaaf8d8df52.tar.bz2
bpo-38328: Speed up the creation time of constant list and set display. (GH-17114)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-11-11-23-44-15.bpo-38328.IFrrjq.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-11-11-23-44-15.bpo-38328.IFrrjq.rst b/Misc/NEWS.d/next/Core and Builtins/2019-11-11-23-44-15.bpo-38328.IFrrjq.rst
new file mode 100644
index 0000000..e0c5ca7
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-11-11-23-44-15.bpo-38328.IFrrjq.rst
@@ -0,0 +1,2 @@
+Sped up the creation time of constant :class:`list` and :class:`set` displays.
+Patch by Brandt Bucher.