threading :: Thread :: Class Thread
[hide private]
[frames] | no frames]

Class Thread

source code

object --+    
         |    
  _Verbose --+
             |
            Thread
Known Subclasses:
threadutils.PeriodicExecution, threadutils.ServerInThread, threadutils.ThreadPool'.RunThread, _DummyThread, _MainThread, _Timer

Instance Methods [hide private]
 
__bootstrap(self) source code
 
__delete(self)
Remove current thread from the dict of currently running threads.
source code
 
__exc_info()
Return information about the most recent exception caught by an except clause in the current stack frame or in an older stack frame.
 
__init__(self, group=None, target=None, name=None, args=(), kwargs=None, verbose=None) source code
 
__repr__(self)
repr(x)
source code
 
__stop(self) source code
 
_set_daemon(self) source code
 
getName(self) source code
 
isAlive(self) source code
 
isDaemon(self) source code
 
join(self, timeout=None) source code
 
run(self) source code
 
setDaemon(self, daemonic) source code
 
setName(self, name) source code
 
start(self) source code

Inherited from _Verbose (private): _note

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables [hide private]
  __initialized = True
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__exc_info()

 
Return information about the most recent exception caught by an except clause in the current stack frame or in an older stack frame.
Returns:
(type, value, traceback)

__init__(self, group=None, target=None, name=None, args=(), kwargs=None, verbose=None)
(Constructor)

source code 
Overrides: _Verbose.__init__

__repr__(self)
(Representation operator)

source code 
repr(x)
Overrides: object.__repr__
(inherited documentation)