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