eric6/Debugger/CallStackViewer.py

branch
multi_processing
changeset 7377
cc920e534ac0
parent 7360
9190402e4505
child 7802
eefe954f01e8
equal deleted inserted replaced
7376:21df384d6150 7377:cc920e534ac0
103 """ 103 """
104 Private slot to show the call stack of the program being debugged. 104 Private slot to show the call stack of the program being debugged.
105 105
106 @param stack list of tuples with call stack data (file name, 106 @param stack list of tuples with call stack data (file name,
107 line number, function name, formatted argument/values list) 107 line number, function name, formatted argument/values list)
108 @type list of tuples of (str, str, str, str)
108 """ 109 """
109 self.clear() 110 self.clear()
110 for fname, fline, ffunc, fargs in stack: 111 for fname, fline, ffunc, fargs in stack:
111 if self.__projectMode: 112 if self.__projectMode:
112 dfname = self.__project.getRelativePath(fname) 113 dfname = self.__project.getRelativePath(fname)

eric ide

mercurial