Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`trace` --- Trace or track Python statement execution |
| 2 | ========================================================== |
| 3 | |
| 4 | .. module:: trace |
| 5 | :synopsis: Trace or track Python statement execution. |
| 6 | |
Raymond Hettinger | 1048094 | 2011-01-10 03:26:08 +0000 | [diff] [blame] | 7 | **Source code:** :source:`Lib/trace.py` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 8 | |
Raymond Hettinger | 4f707fd | 2011-01-10 19:54:11 +0000 | [diff] [blame] | 9 | -------------- |
| 10 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 11 | The :mod:`trace` module allows you to trace program execution, generate |
| 12 | annotated statement coverage listings, print caller/callee relationships and |
| 13 | list functions executed during a program run. It can be used in another program |
| 14 | or from the command line. |
| 15 | |
Marco Buttu | 5dfccb0 | 2017-03-03 21:42:04 +0100 | [diff] [blame] | 16 | .. seealso:: |
| 17 | |
| 18 | `Coverage.py <https://coverage.readthedocs.io/>`_ |
| 19 | A popular third-party coverage tool that provides HTML |
| 20 | output along with advanced features such as branch coverage. |
| 21 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 22 | .. _trace-cli: |
| 23 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 24 | Command-Line Usage |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 25 | ------------------ |
| 26 | |
| 27 | The :mod:`trace` module can be invoked from the command line. It can be as |
| 28 | simple as :: |
| 29 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 30 | python -m trace --count -C . somefile.py ... |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 31 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 32 | The above will execute :file:`somefile.py` and generate annotated listings of |
| 33 | all Python modules imported during the execution into the current directory. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 34 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 35 | .. program:: trace |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 36 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 37 | .. cmdoption:: --help |
| 38 | |
| 39 | Display usage and exit. |
| 40 | |
| 41 | .. cmdoption:: --version |
| 42 | |
| 43 | Display the version of the module and exit. |
| 44 | |
Mario Corchero | 354227a | 2019-06-01 05:49:10 +0100 | [diff] [blame^] | 45 | .. versionadded:: 3.8 |
| 46 | Added ``--module`` option that allows to run an executable module. |
| 47 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 48 | Main options |
| 49 | ^^^^^^^^^^^^ |
| 50 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 51 | At least one of the following options must be specified when invoking |
| 52 | :mod:`trace`. The :option:`--listfuncs <-l>` option is mutually exclusive with |
Senthil Kumaran | f5c3405 | 2014-04-06 10:59:47 -0700 | [diff] [blame] | 53 | the :option:`--trace <-t>` and :option:`--count <-c>` options. When |
| 54 | :option:`--listfuncs <-l>` is provided, neither :option:`--count <-c>` nor |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 55 | :option:`--trace <-t>` are accepted, and vice versa. |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 56 | |
| 57 | .. program:: trace |
| 58 | |
| 59 | .. cmdoption:: -c, --count |
| 60 | |
| 61 | Produce a set of annotated listing files upon program completion that shows |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 62 | how many times each statement was executed. See also |
| 63 | :option:`--coverdir <-C>`, :option:`--file <-f>` and |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 64 | :option:`--no-report <-R>` below. |
| 65 | |
| 66 | .. cmdoption:: -t, --trace |
| 67 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 68 | Display lines as they are executed. |
| 69 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 70 | .. cmdoption:: -l, --listfuncs |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 71 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 72 | Display the functions executed by running the program. |
| 73 | |
| 74 | .. cmdoption:: -r, --report |
| 75 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 76 | Produce an annotated list from an earlier program run that used the |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 77 | :option:`--count <-c>` and :option:`--file <-f>` option. This does not |
| 78 | execute any code. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 79 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 80 | .. cmdoption:: -T, --trackcalls |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 81 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 82 | Display the calling relationships exposed by running the program. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 83 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 84 | Modifiers |
| 85 | ^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 86 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 87 | .. program:: trace |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 88 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 89 | .. cmdoption:: -f, --file=<file> |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 90 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 91 | Name of a file to accumulate counts over several tracing runs. Should be |
| 92 | used with the :option:`--count <-c>` option. |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 93 | |
| 94 | .. cmdoption:: -C, --coverdir=<dir> |
| 95 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 96 | Directory where the report files go. The coverage report for |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 97 | ``package.module`` is written to file :file:`{dir}/{package}/{module}.cover`. |
| 98 | |
| 99 | .. cmdoption:: -m, --missing |
| 100 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 101 | When generating annotated listings, mark lines which were not executed with |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 102 | ``>>>>>>``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 103 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 104 | .. cmdoption:: -s, --summary |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 105 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 106 | When using :option:`--count <-c>` or :option:`--report <-r>`, write a brief |
| 107 | summary to stdout for each file processed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 108 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 109 | .. cmdoption:: -R, --no-report |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 110 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 111 | Do not generate annotated listings. This is useful if you intend to make |
| 112 | several runs with :option:`--count <-c>`, and then produce a single set of |
| 113 | annotated listings at the end. |
| 114 | |
| 115 | .. cmdoption:: -g, --timing |
| 116 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 117 | Prefix each line with the time since the program started. Only used while |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 118 | tracing. |
| 119 | |
| 120 | Filters |
| 121 | ^^^^^^^ |
| 122 | |
| 123 | These options may be repeated multiple times. |
| 124 | |
| 125 | .. program:: trace |
| 126 | |
| 127 | .. cmdoption:: --ignore-module=<mod> |
| 128 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 129 | Ignore each of the given module names and its submodules (if it is a |
| 130 | package). The argument can be a list of names separated by a comma. |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 131 | |
| 132 | .. cmdoption:: --ignore-dir=<dir> |
| 133 | |
| 134 | Ignore all modules and packages in the named directory and subdirectories. |
| 135 | The argument can be a list of directories separated by :data:`os.pathsep`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 136 | |
| 137 | .. _trace-api: |
| 138 | |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 139 | Programmatic Interface |
| 140 | ---------------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 141 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 142 | .. class:: Trace(count=1, trace=1, countfuncs=0, countcallers=0, ignoremods=(),\ |
| 143 | ignoredirs=(), infile=None, outfile=None, timing=False) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 144 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 145 | Create an object to trace execution of a single statement or expression. All |
| 146 | parameters are optional. *count* enables counting of line numbers. *trace* |
| 147 | enables line execution tracing. *countfuncs* enables listing of the |
| 148 | functions called during the run. *countcallers* enables call relationship |
| 149 | tracking. *ignoremods* is a list of modules or packages to ignore. |
| 150 | *ignoredirs* is a list of directories whose modules or packages should be |
| 151 | ignored. *infile* is the name of the file from which to read stored count |
| 152 | information. *outfile* is the name of the file in which to write updated |
| 153 | count information. *timing* enables a timestamp relative to when tracing was |
| 154 | started to be displayed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 155 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 156 | .. method:: run(cmd) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 157 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 158 | Execute the command and gather statistics from the execution with |
| 159 | the current tracing parameters. *cmd* must be a string or code object, |
| 160 | suitable for passing into :func:`exec`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 161 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 162 | .. method:: runctx(cmd, globals=None, locals=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 163 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 164 | Execute the command and gather statistics from the execution with the |
| 165 | current tracing parameters, in the defined global and local |
| 166 | environments. If not defined, *globals* and *locals* default to empty |
| 167 | dictionaries. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 168 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 169 | .. method:: runfunc(func, *args, **kwds) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 170 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 171 | Call *func* with the given arguments under control of the :class:`Trace` |
| 172 | object with the current tracing parameters. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 173 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 174 | .. method:: results() |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 175 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 176 | Return a :class:`CoverageResults` object that contains the cumulative |
| 177 | results of all previous calls to ``run``, ``runctx`` and ``runfunc`` |
| 178 | for the given :class:`Trace` instance. Does not reset the accumulated |
| 179 | trace results. |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 180 | |
| 181 | .. class:: CoverageResults |
| 182 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 183 | A container for coverage results, created by :meth:`Trace.results`. Should |
| 184 | not be created directly by the user. |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 185 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 186 | .. method:: update(other) |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 187 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 188 | Merge in data from another :class:`CoverageResults` object. |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 189 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 190 | .. method:: write_results(show_missing=True, summary=False, coverdir=None) |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 191 | |
Éric Araujo | 67f0b6c | 2010-12-15 19:30:15 +0000 | [diff] [blame] | 192 | Write coverage results. Set *show_missing* to show lines that had no |
| 193 | hits. Set *summary* to include in the output the coverage summary per |
| 194 | module. *coverdir* specifies the directory into which the coverage |
| 195 | result files will be output. If ``None``, the results for each source |
| 196 | file are placed in its directory. |
Éric Araujo | d00862a | 2010-12-15 19:09:58 +0000 | [diff] [blame] | 197 | |
| 198 | A simple example demonstrating the use of the programmatic interface:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 199 | |
| 200 | import sys |
| 201 | import trace |
| 202 | |
| 203 | # create a Trace object, telling it what to ignore, and whether to |
| 204 | # do tracing or line-counting or both. |
| 205 | tracer = trace.Trace( |
| 206 | ignoredirs=[sys.prefix, sys.exec_prefix], |
| 207 | trace=0, |
| 208 | count=1) |
| 209 | |
| 210 | # run the new command using the given tracer |
| 211 | tracer.run('main()') |
| 212 | |
Petri Lehtinen | 9f74c6c | 2013-02-23 19:26:56 +0100 | [diff] [blame] | 213 | # make a report, placing output in the current directory |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 214 | r = tracer.results() |
Petri Lehtinen | 9f74c6c | 2013-02-23 19:26:56 +0100 | [diff] [blame] | 215 | r.write_results(show_missing=True, coverdir=".") |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 216 | |