Pythonのsleep中のThreadをWake up PythonのThreadにて、RubyのThreadのwakeupメソッドに等しいことを実装したかったのですが、wakeup的なメソッドは存在しない模様。 というわけで、別の方法を探していたところ、Eventのwaitを使えばほぼ等しい機能が実装できるようです。 There's an instrument on my LAN that sends a UDP data packet every 5-10 ms. In my application, I have a reader thread that allocates... サンプルプログラム import time import threading def thread_target(event): while True: if event.wait(10): print