Ferdinand van Wyk

Results 1 issues of 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...