4 lines
88 B
Python
4 lines
88 B
Python
import select, sys
|
|
|
|
ready, _, _ = select.select([sys.stdin], [], [], 0.025)
|
|
type(ready)
|