(self)
| 461 | |
| 462 | class ExceptionGroupSplitTests(ExceptionGroupTestBase): |
| 463 | def setUp(self): |
| 464 | self.eg = create_simple_eg() |
| 465 | self.eg_template = [ValueError(1), TypeError(int), ValueError(2)] |
| 466 | |
| 467 | def test_basics_split_by_type__passthrough(self): |
| 468 | for E in [BaseException, Exception, |
nothing calls this directly
no test coverage detected