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): |