Ferdinand van Wyk
Ferdinand van Wyk
Running the following simple code with python 2.7.15: ```python from stopit import ThreadingTimeout def func(): with ThreadingTimeout(1, swallow_exc=True): import time; time.sleep(2) if __name__ == '__main__': func() ``` I get the...