summaryrefslogtreecommitdiff
path: root/Doc/library/trace.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-10 03:26:08 +0000
committerRaymond Hettinger <python@rcn.com>2011-01-10 03:26:08 +0000
commit10480940373492652bc285fca3fa74751c271645 (patch)
treebb1bfed3416120cc371eb884960cf73aad9a957e /Doc/library/trace.rst
parenta4815caa7ccf21aa994d0e0eec66873072f0e352 (diff)
downloadcpython-git-10480940373492652bc285fca3fa74751c271645.tar.gz
Move source links to consistent location and remove wordy, big yellow boxes.
Diffstat (limited to 'Doc/library/trace.rst')
-rw-r--r--Doc/library/trace.rst6
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst
index 96f31e9719..5a32482e69 100644
--- a/Doc/library/trace.rst
+++ b/Doc/library/trace.rst
@@ -4,17 +4,13 @@
.. 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 :source:`trace module Python source code
- <Lib/trace.py>`
-
.. _trace-cli:
Command-Line Usage