summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_exception_group.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-99553: add tests for ExceptionGroup wrapping (GH-99615)Miss Islington (bot)2023-04-111-0/+14
| | | | | (cherry picked from commit 4cd1cc843aa4ae77a543cdd882da687300762e9d) Co-authored-by: Zac Hatfield-Dodds <zac.hatfield.dodds@gmail.com>
* gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException ↵Miss Islington (bot)2022-11-181-4/+18
| | | | | | | (GH-99572) (cherry picked from commit c8c6113398ee9a7867fe9b08bc539cceb61e2aaa) Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
* gh-89770: Implement PEP-678 - Exception notes (GH-31317)Irit Katriel2022-04-161-2/+33
|
* bpo-46927: Include the type's name in the error message for subscripting ↵Serhiy Storchaka2022-03-051-1/+1
| | | | non-generic types (GH-31694)
* bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup ↵Irit Katriel2022-02-221-0/+65
| | | | (GH-31294)
* bpo-46431: use raw string for regex in test (GH-30901)Irit Katriel2022-01-251-1/+1
|
* bpo-46431: improve error message on invalid calls to ↵Irit Katriel2022-01-241-1/+1
| | | | BaseExceptionGroup.__new__ (GH-30854)
* bpo-46107: ExceptionGroup.subgroup()/split() should copy __note__ to the ↵Irit Katriel2021-12-211-1/+3
| | | | parts (GH-30159)
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-1/+2
|
* bpo-45292: Use raw strings for regex in tests (GH-29545)Irit Katriel2021-11-161-3/+3
|
* bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes ↵Irit Katriel2021-10-221-0/+808
(GH-28569)