Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
_MainThread Class Reference
Inheritance diagram for _MainThread:
Thread _Verbose

Public Member Functions

def __init__
 
- Public Member Functions inherited from Thread
def __init__
 
def __repr__
 
def start
 
def run
 
def join
 
def getName
 
def setName
 
def isAlive
 
def isDaemon
 
def setDaemon
 
- Public Member Functions inherited from _Verbose
def __init__
 
def __init__
 

Detailed Description

Definition at line 522 of file threading.py.

Constructor & Destructor Documentation

def __init__ (   self)

Definition at line 524 of file threading.py.

References _MainThread.__exitfunc(), threading._get_ident, _Verbose._note(), _MainThread._Thread__started, threading.enumerate(), and atexit.register().

525  def __init__(self):
526  Thread.__init__(self, name="MainThread")
527  self._Thread__started = 1
528  _active_limbo_lock.acquire()
529  _active[_get_ident()] = self
530  _active_limbo_lock.release()
531  import atexit

The documentation for this class was generated from the following file: