(*_args, **_kwargs)
| 53 | """Patch event loop policy to work around ptpython signal handler bug on Windows.""" |
| 54 | |
| 55 | def do_nothing(*_args, **_kwargs) -> None: |
| 56 | return None |
| 57 | |
| 58 | policy = get_event_loop_policy() |
| 59 | if loop_factory := getattr(policy, "_loop_factory", None): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…