Ejemplo n.º 1
0
    def __init__(self):
        """
        Constructor
        """
        AsyncIO.__init__(self)

        DebugClientBase.DebugClientBase.__init__(self)

        DebugBase.__init__(self, self)

        self.variant = 'Standard'
Ejemplo n.º 2
0
 def __init__(self):
     """
     Constructor
     """
     AsyncIO.__init__(self)
     
     DebugClientBase.DebugClientBase.__init__(self)
     
     DebugBase.__init__(self, self)
     
     self.variant = 'Standard'
Ejemplo n.º 3
0
 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'
Ejemplo n.º 4
0
    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'