Return True, assuming there's something to read on stdin.
()
| 56 | return msvcrt.kbhit() |
| 57 | |
| 58 | def _stdin_ready_other(): |
| 59 | """Return True, assuming there's something to read on stdin.""" |
| 60 | return True |
| 61 | |
| 62 | def _use_appnope(): |
| 63 | """Should we use appnope for dealing with OS X app nap? |
nothing calls this directly
no outgoing calls
no test coverage detected