diff options
Diffstat (limited to 'Doc/library/trace.rst')
| -rw-r--r-- | Doc/library/trace.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/trace.rst b/Doc/library/trace.rst index 9cd4996..c4ddc56 100644 --- a/Doc/library/trace.rst +++ b/Doc/library/trace.rst @@ -130,7 +130,8 @@ These options may be repeated multiple times. Programmatic Interface ---------------------- -.. class:: Trace([count=1[, trace=1[, countfuncs=0[, countcallers=0[, ignoremods=()[, ignoredirs=()[, infile=None[, outfile=None[, timing=False]]]]]]]]]) +.. class:: Trace(count=1, trace=1, countfuncs=0, countcallers=0, ignoremods=(),\ + ignoredirs=(), infile=None, outfile=None, timing=False) Create an object to trace execution of a single statement or expression. All parameters are optional. *count* enables counting of line numbers. *trace* @@ -177,7 +178,7 @@ Programmatic Interface Merge in data from another :class:`CoverageResults` object. - .. method:: write_results([show_missing=True[, summary=False[, coverdir=None]]]) + .. method:: write_results(show_missing=True, summary=False, coverdir=None) Write coverage results. Set *show_missing* to show lines that had no hits. Set *summary* to include in the output the coverage summary per |
