diff options
| author | Tim Peters <tim.peters@gmail.com> | 2003-06-29 17:24:17 (GMT) | 
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2003-06-29 17:24:17 (GMT) | 
| commit | d1b108b953b9406bb9a65c1cf5cd6b47d0ee09bd (patch) | |
| tree | 8d65ec30a8eab4638ec1e776a8cf1d65ad2f2c12 /Lib/threading.py | |
| parent | 5e2ed818b7fb9daa3a2733361f3584f07431aa85 (diff) | |
| download | cpython-d1b108b953b9406bb9a65c1cf5cd6b47d0ee09bd.zip cpython-d1b108b953b9406bb9a65c1cf5cd6b47d0ee09bd.tar.gz cpython-d1b108b953b9406bb9a65c1cf5cd6b47d0ee09bd.tar.bz2  | |
Whitespace normalization.
Diffstat (limited to 'Lib/threading.py')
| -rw-r--r-- | Lib/threading.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index 7594542..78135f9 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:  | 
