diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-15 03:26:36 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-15 03:26:36 (GMT) |
commit | b90f89a496676ec714e111a747344600f3988496 (patch) | |
tree | 161c61762992b5c1588c9a49f557ad88b31b091f /Lib/threading.py | |
parent | 495ad3c8ccb9ed3554177a3e8687676c78e667de (diff) | |
download | cpython-b90f89a496676ec714e111a747344600f3988496.zip cpython-b90f89a496676ec714e111a747344600f3988496.tar.gz cpython-b90f89a496676ec714e111a747344600f3988496.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index fbc1f5c..e484521 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -65,7 +65,7 @@ def RLock(*args, **kwargs): return apply(_RLock, args, kwargs) class _RLock(_Verbose): - + def __init__(self, verbose=None): _Verbose.__init__(self, verbose) self.__block = _allocate_lock() @@ -440,7 +440,7 @@ class Thread(_Verbose): def isAlive(self): assert self.__initialized, "Thread.__init__() not called" return self.__started and not self.__stopped - + def isDaemon(self): assert self.__initialized, "Thread.__init__() not called" return self.__daemonic @@ -496,7 +496,7 @@ def _pickSomeNonDaemonThread(): # when we exit (conform previous semantics). class _DummyThread(Thread): - + def __init__(self): Thread.__init__(self, name=_newname("Dummy-%d")) self._Thread__started = 1 |