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

Class Thread

source code

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

Instance Methods [hide private]
 
__bootstrap(self) source code
 
__bootstrap_inner(self) source code
 
__delete(self)
Remove current thread from the dict of currently running threads.
source code
None
__exc_clear()
Clear global information on the current exception.
(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
source code
 
__repr__(self)
repr(x)
source code
 
__stop(self) source code
 
_set_daemon(self) source code
 
_set_ident(self) source code
 
getName(self) source code
 
isAlive(self) source code
 
isDaemon(self) source code
 
is_alive(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__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  __initialized = False
Properties [hide private]
  daemon
  ident
  name

Inherited from object: __class__

Method Details [hide private]

__exc_clear()

 

Clear global information on the current exception. Subsequent calls to exc_info() will return (None,None,None) until another exception is raised in the current thread or the execution stack returns to a frame where another exception is being handled.

Returns: None

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

source code 

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

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

Property Details [hide private]

daemon

Get Method:
unreachable.daemon(self)
Set Method:
unreachable.daemon(self, daemonic)

ident

Get Method:
unreachable.ident(self)

name

Get Method:
unreachable.name(self)
Set Method:
unreachable.name(self, name)