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

type Thread

object --+    
         |    
  _Verbose --+
             |
            Thread
Known Subclasses:

Instance Methods [hide private]
(type, value, traceback)
__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)
 
_set_daemon(self)
 
__repr__(self)
 
start(self)
 
run(self)
 
__bootstrap(self)
 
__stop(self)
 
__delete(self)
Remove current thread from the dict of currently running threads.
 
join(self, timeout=None)
 
getName(self)
 
setName(self, name)
 
isAlive(self)
 
isDaemon(self)
 
setDaemon(self, daemonic)

Inherited from _Verbose (private): _note

Class Variables [hide private]
  __initialized = False
Method Details [hide private]

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

 
Overrides: _Verbose.__init__

__repr__(self)
(Representation operator)

 
Overrides: object.__repr__
(inherited documentation)