()
| 1540 | |
| 1541 | |
| 1542 | def _assertion_supported() -> bool: |
| 1543 | try: |
| 1544 | assert False |
| 1545 | except AssertionError: |
| 1546 | return True |
| 1547 | else: |
| 1548 | return False # type: ignore[unreachable] |
| 1549 | |
| 1550 | |
| 1551 | def create_terminal_writer( |
no outgoing calls
no test coverage detected