diff --git a/doc/func_timeout.StoppableThread.html b/doc/func_timeout.StoppableThread.html index 8532685..c277b83 100644 --- a/doc/func_timeout.StoppableThread.html +++ b/doc/func_timeout.StoppableThread.html @@ -19,10 +19,11 @@ LICENSE, otherwise it is available at https://gith
| ctypes - | os - | threading +os + | sys +threading | time - |
+
| diff --git a/doc/func_timeout.dafunc.html b/doc/func_timeout.dafunc.html index c2eaac0..ee964ad 100644 --- a/doc/func_timeout.dafunc.html +++ b/doc/func_timeout.dafunc.html @@ -98,17 +98,6 @@ If the timeout is exceeded, FunctionTimedOut will& but will not block the calling thread (a new thread will be created to perform the join). If possible, you should try/except FunctionTimedOut to return cleanly, but in most cases it will 'just work'. -Be careful of code like: - -def myfunc(): - while True: - try: - dosomething() - except Exception: - continue - -because it will never terminate. - @return - The return value that #func# gives |