summaryrefslogtreecommitdiffstats
path: root/Doc/library/trace.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-19 00:14:03 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-08-19 00:14:03 (GMT)
commit29a0b57e4ed19532dc78dbf08b957c85bfbafbd6 (patch)
treeb7fae5150cb2e44679947e109e68eb2a05076f7d /Doc/library/trace.rst
parentd478a46d563413d51a730678e4c72a54d2881123 (diff)
downloadcpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.zip
cpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.tar.gz
cpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.tar.bz2
Backport source links from 3.x.
Existing links have been updated to use the new reST role. In some files, I have also made cosmetic changes to the header.
Diffstat (limited to 'Doc/library/trace.rst')
-rw-r--r--Doc/library/trace.rst9
1 files changed, 3 insertions, 6 deletions
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst
index 2e9d2b4..a2afda1 100644
--- a/Doc/library/trace.rst
+++ b/Doc/library/trace.rst
@@ -1,21 +1,18 @@
-
:mod:`trace` --- Trace or track Python statement execution
==========================================================
.. module:: trace
:synopsis: Trace or track Python statement execution.
+**Source code:** :source:`Lib/trace.py`
+
+--------------
The :mod:`trace` module allows you to trace program execution, generate
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::
-
- Latest version of the `trace module Python source code
- <http://svn.python.org/view/python/branches/release27-maint/Lib/trace.py?view=markup>`_
-
.. _trace-cli:
Command-Line Usage