Return True if there's something to read on stdin (nt version).
()
| 52 | return bool(infds) |
| 53 | |
| 54 | def _stdin_ready_nt(): |
| 55 | """Return True if there's something to read on stdin (nt version).""" |
| 56 | return msvcrt.kbhit() |
| 57 | |
| 58 | def _stdin_ready_other(): |
| 59 | """Return True, assuming there's something to read on stdin.""" |
nothing calls this directly
no outgoing calls
no test coverage detected