()
| 66 | |
| 67 | |
| 68 | def _suppress_known_runtime_warnings() -> None: |
| 69 | warnings.filterwarnings( |
| 70 | "ignore", |
| 71 | message=r".*Proactor event loop does not implement add_reader family of methods required.*", |
| 72 | category=RuntimeWarning, |
| 73 | ) |
| 74 | |
| 75 | |
| 76 | def _configure_process_runtime() -> None: |
no outgoing calls
no test coverage detected