summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-11-04 09:59:46 (GMT)
committerGitHub <noreply@github.com>2023-11-04 09:59:46 (GMT)
commita28a3967ab9a189122f895d51d2551f7b3a273b0 (patch)
tree228939ee7af431fd8ee289e3289e2d94807e962c /Misc
parent890ef1b035457fe5d0b0faf27a703c74c33e0141 (diff)
downloadcpython-a28a3967ab9a189122f895d51d2551f7b3a273b0.zip
cpython-a28a3967ab9a189122f895d51d2551f7b3a273b0.tar.gz
cpython-a28a3967ab9a189122f895d51d2551f7b3a273b0.tar.bz2
gh-111666: Speed up `BaseExceptionGroup.{derive,split,subgroup}` (#111667)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-11-03-01-23-48.gh-issue-111666.l8Q8G5.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-11-03-01-23-48.gh-issue-111666.l8Q8G5.rst b/Misc/NEWS.d/next/Core and Builtins/2023-11-03-01-23-48.gh-issue-111666.l8Q8G5.rst
new file mode 100644
index 0000000..1d742a7
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-11-03-01-23-48.gh-issue-111666.l8Q8G5.rst
@@ -0,0 +1,3 @@
+Speed up :meth:`BaseExceptionGroup.derive`,
+:meth:`BaseExceptionGroup.subgroup`, and :meth:`BaseExceptionGroup.split` by
+changing how they parse passed arguments.