0
可能重複:
How to limit execution time of a function call in PythonPython和90毫秒超時
我有一個需要90毫秒超時功能。如果達到極限的極限,我該如何導致異常或休息或其他情況?
由於
可能重複:
How to limit execution time of a function call in PythonPython和90毫秒超時
我有一個需要90毫秒超時功能。如果達到極限的極限,我該如何導致異常或休息或其他情況?
由於
具有螺紋在等待大約後臺執行(不能準確地做到這一點)90毫秒,然後設置一個原子布爾值打破「等待」循環。
[threading.Event](http://docs.python.org/library/threading.html#event-objects)可以用來設置「bool」。 – dav1d
@ dav1d true ----- –