()
| 444 | |
| 445 | |
| 446 | def keyinput() -> None: |
| 447 | global key, pause |
| 448 | from msvcrt import getwch |
| 449 | while True: |
| 450 | key = getwch() |
| 451 | if key == " ": |
| 452 | pause = not pause |
| 453 | key = None |
| 454 | elif key == "Q": |
| 455 | break |
| 456 | |
| 457 | |
| 458 |
nothing calls this directly
no outgoing calls
no test coverage detected