From: Brett Cannon Date: Fri, 3 Mar 2017 20:58:17 +0000 (-0800) Subject: bpo-29455: Mention coverage.py in trace module documentation (GH-435) X-Git-Tag: v3.6.1rc1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d07aceedabcdc9826489f8b9baffff056283bb3;p=python bpo-29455: Mention coverage.py in trace module documentation (GH-435) (cherry picked from commit 5dfccb06dc513ae67fac5fee66356ad58a4de170) --- diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst index b0ac81271c..5cb7029adf 100644 --- a/Doc/library/trace.rst +++ b/Doc/library/trace.rst @@ -13,6 +13,12 @@ annotated statement coverage listings, print caller/callee relationships and list functions executed during a program run. It can be used in another program or from the command line. +.. seealso:: + + `Coverage.py `_ + A popular third-party coverage tool that provides HTML + output along with advanced features such as branch coverage. + .. _trace-cli: Command-Line Usage