From: Jeremy Hylton Date: Thu, 1 Jun 2000 01:17:17 +0000 (+0000) Subject: patch from Charles Waldman-- X-Git-Tag: v2.0b1~1618 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b5fc749c8b809f8ebab74cebff4153880236ca33;p=thirdparty%2FPython%2Fcpython.git patch from Charles Waldman-- define ThreadError (== thread.error); docs should be updated, too --- diff --git a/Lib/threading.py b/Lib/threading.py index ded573a4c4f7..fb2eb21778bf 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -18,6 +18,7 @@ del time _start_new_thread = thread.start_new_thread _allocate_lock = thread.allocate_lock _get_ident = thread.get_ident +ThreadError = thread.error del thread _print_exc = traceback.print_exc