summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2022-07-31 03:14:53 (GMT)
committerGitHub <noreply@github.com>2022-07-31 03:14:53 (GMT)
commit50b2261bdac98303087287b24eef96abd45a82f9 (patch)
treebe63b7a12e8d286cac66b9840cfdc6e35b73219e /Misc/NEWS.d
parent53357b3ee53d767c2da5cd77f9c47117903e9a44 (diff)
downloadcpython-50b2261bdac98303087287b24eef96abd45a82f9.zip
cpython-50b2261bdac98303087287b24eef96abd45a82f9.tar.gz
cpython-50b2261bdac98303087287b24eef96abd45a82f9.tar.bz2
gh-91146: Reduce allocation size of list from str.split()/rsplit() (gh-95473)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-07-31-03-22-58.gh-issue-91146.Y2Hziy.rst2
1 files changed, 2 insertions, 0 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
new file mode 100644
index 0000000..52568db
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-07-31-03-22-58.gh-issue-91146.Y2Hziy.rst
@@ -0,0 +1,2 @@
+Reduce allocation size of :class:`list` from :meth:`str.split`
+and :meth:`str.rsplit`. Patch by Dong-hee Na.