From 6db6899d490520a49f38513ebe0cb0520d46f1d8 Mon Sep 17 00:00:00 2001 From: Marco Buttu Date: Thu, 23 Feb 2017 22:01:15 +0100 Subject: [PATCH 1/3] bpo-29455: Mention coverage.py in trace module documentation --- Doc/library/trace.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst index b0ac81271c5c18..0113b5ece72071 100644 --- a/Doc/library/trace.rst +++ b/Doc/library/trace.rst @@ -13,6 +13,10 @@ 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 `_, which is one + of the most popular third-party coverage tools. It provides very nice HTML + output along with advanced features such as branch coverage. + .. _trace-cli: Command-Line Usage From fc9debd9878d7bd92a6edb791a0360798b90005c Mon Sep 17 00:00:00 2001 From: Marco Buttu Date: Sat, 25 Feb 2017 13:15:06 +0100 Subject: [PATCH 2/3] bpo-29455: add 'seealso coverage.py', as a reST list. --- Doc/library/trace.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst index 0113b5ece72071..080c9524d47713 100644 --- a/Doc/library/trace.rst +++ b/Doc/library/trace.rst @@ -13,9 +13,11 @@ 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 `_, which is one - of the most popular third-party coverage tools. It provides very nice HTML - output along with advanced features such as branch coverage. +.. seealso:: + + `Coverage.py `_ + A popular third-party coverage tools that provides very nice HTML + output along with advanced features such as branch coverage. .. _trace-cli: From cffd6599be92e932e69cadac31a57274d2129ddb Mon Sep 17 00:00:00 2001 From: Marco Buttu Date: Mon, 27 Feb 2017 15:56:54 +0100 Subject: [PATCH 3/3] bpo-29455: fix typo and remove superfluous 'very nice'. --- Doc/library/trace.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst index 080c9524d47713..5cb7029adf5e9e 100644 --- a/Doc/library/trace.rst +++ b/Doc/library/trace.rst @@ -16,7 +16,7 @@ or from the command line. .. seealso:: `Coverage.py `_ - A popular third-party coverage tools that provides very nice HTML + A popular third-party coverage tool that provides HTML output along with advanced features such as branch coverage. .. _trace-cli: