Location |
Event |
Statement |
Data |
<%
older = {}
%>
% for t in trace:
${t.filename|self.display_filename}:
% if t.line_no[0] == t.line_no[1]:
${t.line_no[0]}
% else:
${t.line_no[0]} - ${t.line_no[1]}
% endif
|
% if t.event == 'call' and t.func_name == '':
module |
% else:
${t.event} |
% endif
${getlines(t.filename, t.line_no)} |
% if t.event == 'return':
${pformat(t.trace_arg, width=20) | syntax} |
% elif t.event == 'call':
|
% elif not t.local_vars:
|
% else:
${varchanges(get_variable_changes(older, t.local_vars))} |
<%
older = t.local_vars or {}
%>
% endif
% endfor
${pagination(page, num_pages, per_page)}