{# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 #} {# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt #} {{monitored_method.info.full_name}} {# IE8 rounds line-height incorrectly, and adding this emulateIE7 line makes it right! #} {# http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/7684445e-f080-4d8f-8529-132763348e21 #}
{% for flow in monitored_method.flows %}

Flow {{flow.pos}}: {{flow.info.call_count}} calls ({{flow.info.call_ratio}}%)

{% for each in flow.info.arg_values %}

{{each.value}}

{% endfor %} {% if flow.info.yield_values %}

{{flow.info.yield_values}}

{% endif %} {% if flow.info.return_values %}

{{flow.info.return_values}}

{% endif %} {% if flow.info.exception_values %}

{{flow.info.exception_values}}

{% endif %}
                {% for line in flow.info.lines %}
                {% if line.is_run %}
{{line.lineno}}{{line.html}}
                {% endif %}
                {% if line.is_not_run %}
{{line.lineno}}{{line.html}}
                {% endif %}
                {% if line.is_not_exec %}
{{line.lineno}}{{line.html}}
                {% endif %}
                {% endfor %}
            
{% endfor %}