summaryrefslogtreecommitdiff
path: root/Doc/library/trace.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/trace.rst')
-rw-r--r--Doc/library/trace.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst
index 7b49c8fd49..c4ddc56cf2 100644
--- a/Doc/library/trace.rst
+++ b/Doc/library/trace.rst
@@ -4,13 +4,15 @@
.. 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.
-
.. _trace-cli:
Command-Line Usage