DebugClients/Python/DebugClientBase.py

branch
debugger speed
changeset 5205
df1709f0e49f
parent 5179
5f56410e7624
child 5206
997064ba25d6
--- a/DebugClients/Python/DebugClientBase.py	Tue Oct 04 21:25:15 2016 +0200
+++ b/DebugClients/Python/DebugClientBase.py	Tue Oct 04 21:45:33 2016 +0200
@@ -202,7 +202,6 @@
         
         # special objects representing the main scripts thread and frame
         self.mainThread = self
-        self.mainFrame = None
         self.framenr = 0
         
         # The context to run the debugged program in.
@@ -525,7 +524,6 @@
                 os.chdir(params["workdir"])
             
             self.running = sys.argv[0]
-            self.mainFrame = None
             self.debugging = True
             
             self.fork_auto = params["autofork"]
@@ -567,7 +565,6 @@
                 os.chdir(params["workdir"])
 
             self.running = sys.argv[0]
-            self.mainFrame = None
             self.botframe = None
             
             self.fork_auto = params["autofork"]
@@ -1882,7 +1879,6 @@
         # setup the debugger variables
         self._fncache = {}
         self.dircache = []
-        self.mainFrame = None
         self.debugging = True
         
         self.attachThread(mainThread=True)
@@ -1934,7 +1930,6 @@
             os.chdir(wd)
         self.running = sys.argv[0]
         self.__setCoding(self.running)
-        self.mainFrame = None
         self.debugging = True
         
         self.passive = True

eric ide

mercurial