src/eric7/DebugClients/Python/DebugBase.py

branch
eric7
changeset 10423
299802979277
parent 10417
c6011e501282
child 10439
21c28b0f9e41
equal deleted inserted replaced
10422:e28b89693f37 10423:299802979277
778 778
779 @param frame frame object to inspect 779 @param frame frame object to inspect
780 @type frame object or list 780 @type frame object or list
781 @param applyTrace flag to assign trace function to fr.f_trace 781 @param applyTrace flag to assign trace function to fr.f_trace
782 @type bool 782 @type bool
783 @return list of lists with file name (string), line number (integer) 783 @return list of lists with file name, line number, function name
784 and function name (string) 784 and function arguments
785 @rtype list of list of [str, int, str, str]
785 """ 786 """
786 tb_lineno = None 787 tb_lineno = None
787 if frame is None: 788 if frame is None:
788 fr = self.getFrame() 789 fr = self.getFrame()
789 elif isinstance(frame, list): 790 elif isinstance(frame, list):

eric ide

mercurial