DebugClients/Python/DebugClient.py

branch
jsonrpc
changeset 5132
a094eee9f862
parent 4631
5c1a96925da4
--- a/DebugClients/Python/DebugClient.py	Sat Sep 03 18:01:19 2016 +0200
+++ b/DebugClients/Python/DebugClient.py	Sat Sep 03 18:02:37 2016 +0200
@@ -7,12 +7,11 @@
 Module implementing a Qt free version of the debug client.
 """
 
-from AsyncIO import AsyncIO
 from DebugBase import DebugBase
 import DebugClientBase
 
 
-class DebugClient(DebugClientBase.DebugClientBase, AsyncIO, DebugBase):
+class DebugClient(DebugClientBase.DebugClientBase, DebugBase):
     """
     Class implementing the client side of the debugger.
     
@@ -23,8 +22,6 @@
         """
         Constructor
         """
-        AsyncIO.__init__(self)
-        
         DebugClientBase.DebugClientBase.__init__(self)
         
         DebugBase.__init__(self, self)

eric ide

mercurial