From d1b108b953b9406bb9a65c1cf5cd6b47d0ee09bd Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 29 Jun 2003 17:24:17 +0000 Subject: [PATCH] Whitespace normalization. --- Lib/threading.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.50.0