summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-06-23 18:47:47 (GMT)
committerGitHub <noreply@github.com>2023-06-23 18:47:47 (GMT)
commitd8ca5a11bc55e2a69cab4f8795d0a5aa6932a41b (patch)
treeaef00ea1df35757252351d4c1fd39152026e86b5 /Misc
parent1d33d5378058671bfabb6f4d4b5bfd4726973ff9 (diff)
downloadcpython-d8ca5a11bc55e2a69cab4f8795d0a5aa6932a41b.zip
cpython-d8ca5a11bc55e2a69cab4f8795d0a5aa6932a41b.tar.gz
cpython-d8ca5a11bc55e2a69cab4f8795d0a5aa6932a41b.tar.bz2
gh-105730: support more callables in ExceptionGroup.split() and subgroup() (#106035)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-06-23-16-51-02.gh-issue-105730.16haMe.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-06-23-16-51-02.gh-issue-105730.16haMe.rst b/Misc/NEWS.d/next/Core and Builtins/2023-06-23-16-51-02.gh-issue-105730.16haMe.rst
new file mode 100644
index 0000000..fa70ee0
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-06-23-16-51-02.gh-issue-105730.16haMe.rst
@@ -0,0 +1,2 @@
+Allow any callable other than type objects as the condition predicate in
+:meth:`BaseExceptionGroup.split` and :meth:`BaseExceptionGroup.subgroup`.