DebugClients/Python3/DebugClientBase.py

branch
debugger speed
changeset 5050
a6335e924d08
parent 5049
e1d22c4b0be0
child 5064
9f4e3914e50c
equal deleted inserted replaced
5049:e1d22c4b0be0 5050:a6335e924d08
1314 (list of int) 1314 (list of int)
1315 """ 1315 """
1316 if self.currentThread is None: 1316 if self.currentThread is None:
1317 return 1317 return
1318 1318
1319 frmnr += self.currentThread.skipFrames
1319 if scope == 0: 1320 if scope == 0:
1320 self.framenr = frmnr 1321 self.framenr = frmnr
1321 1322
1322 f = self.currentThread.getCurrentFrame() 1323 f = self.currentThread.getCurrentFrame()
1323 1324
1361 (list of int) 1362 (list of int)
1362 """ 1363 """
1363 if self.currentThread is None: 1364 if self.currentThread is None:
1364 return 1365 return
1365 1366
1367 frmnr += self.currentThread.skipFrames
1366 f = self.currentThread.getCurrentFrame() 1368 f = self.currentThread.getCurrentFrame()
1367 1369
1368 while f is not None and frmnr > 0: 1370 while f is not None and frmnr > 0:
1369 f = f.f_back 1371 f = f.f_back
1370 frmnr -= 1 1372 frmnr -= 1

eric ide

mercurial