()
| 33 | |
| 34 | |
| 35 | def check_basic_contextmanager() -> None: |
| 36 | with RaisesGroup(ValueError) as e: |
| 37 | raise ExceptionGroup("foo", (ValueError(),)) |
| 38 | assert_type(e.value, ExceptionGroup[ValueError]) |
| 39 | |
| 40 | |
| 41 | def check_basic_matches() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…