summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2022-08-01 13:15:07 (GMT)
committerGitHub <noreply@github.com>2022-08-01 13:15:07 (GMT)
commitfb75d015f487e50079e8d2ea7859750684b124e4 (patch)
tree6d79d990973ef91e4f00bca1e90562862590030e /Misc
parent347c783673c22c3f37e21c485437404b67405512 (diff)
downloadcpython-fb75d015f487e50079e8d2ea7859750684b124e4.zip
cpython-fb75d015f487e50079e8d2ea7859750684b124e4.tar.gz
cpython-fb75d015f487e50079e8d2ea7859750684b124e4.tar.bz2
gh-91146: More reduce allocation size of list from str.split/rsplit (gh-95493)
Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-07-31-03-22-58.gh-issue-91146.Y2Hziy.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-07-31-03-22-58.gh-issue-91146.Y2Hziy.rst b/Misc/NEWS.d/next/Core and Builtins/2022-07-31-03-22-58.gh-issue-91146.Y2Hziy.rst
index 52568db..9172ca2 100644
--- a/Misc/NEWS.d/next/Core and Builtins/2022-07-31-03-22-58.gh-issue-91146.Y2Hziy.rst
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-07-31-03-22-58.gh-issue-91146.Y2Hziy.rst
@@ -1,2 +1,2 @@
Reduce allocation size of :class:`list` from :meth:`str.split`
-and :meth:`str.rsplit`. Patch by Dong-hee Na.
+and :meth:`str.rsplit`. Patch by Dong-hee Na and Inada Naoki.