]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Sun, 29 Jun 2003 17:24:17 +0000 (17:24 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 29 Jun 2003 17:24:17 +0000 (17:24 +0000)
Lib/threading.py

index 759454216fc1084f83946d3a2838740831d3659b..78135f9b539859bb77eb9509e127f24371c1aa70 100644 (file)
@@ -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: