From: Tim Peters Date: Sun, 29 Jun 2003 17:24:17 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.3c1~239 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1b108b953b9406bb9a65c1cf5cd6b47d0ee09bd;p=python Whitespace normalization. --- diff --git a/Lib/threading.py b/Lib/threading.py index 759454216f..78135f9b53 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -60,7 +60,7 @@ _trace_hook = None def setprofile(func): global _profile_hook _profile_hook = func - + def settrace(func): global _trace_hook _trace_hook = func @@ -427,7 +427,7 @@ class Thread(_Verbose): if _profile_hook: self._note("%s.__bootstrap(): registering profile hook", self) _sys.setprofile(_profile_hook) - + try: self.run() except SystemExit: