(*args)
| 407 | # Work around a bug involving sys.exit and TaskGroups |
| 408 | # (https://github.com/python/cpython/issues/101515). |
| 409 | def exit(*args): |
| 410 | raise MySystemExit(*args) |
| 411 | |
| 412 | |
| 413 | class MySystemExit(Exception): |
no test coverage detected
searching dependent graphs…