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

Class Thread

   object --+    
            |    
??._Verbose-6 --+
                |
               dummy_threading.Thread

Instance Methods [hide private]
 
__bootstrap(self)
 
__delete(self)
Remove current thread from the dict of currently running threads.
(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)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
__repr__(self)
repr(x)
 
__stop(self)
 
_set_daemon(self)
 
getName(self)
 
isAlive(self)
 
isDaemon(self)
 
join(self, timeout=None)
 
run(self)
 
setDaemon(self, daemonic)
 
setName(self, name)
 
start(self)

Inherited from unreachable._Verbose (private): _note

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

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

Inherited from object: __class__

Method Details [hide private]

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

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

 

repr(x)

Overrides: object.__repr__
(inherited documentation)