4
votes
3answers
346 views
How does a threading.Thread yield the rest of its quantum in Python?
I've got a thread that's polling a piece of hardware.
while not hardware_is_ready():
pass
process_data_from_hardware()
But there are other threads (and process …
