def __init__(self): """ Constructor """ AsyncIO.__init__(self) DebugClientBase.DebugClientBase.__init__(self) DebugBase.__init__(self, self) self.variant = 'Standard'
def __init__(self): """ Constructor """ AsyncIO.__init__(self) DebugClientBase.DebugClientBase.__init__(self) # protection lock for synchronization self.clientLock = RLock() # the "current" thread, basically the thread we are at a breakpoint # for. self.currentThread = None # special objects representing the main scripts thread and frame self.mainThread = None self.mainFrame = None self.variant = 'Threaded'