diff options
author | Michael Droettboom <mdboom@gmail.com> | 2022-11-04 10:15:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 10:15:54 (GMT) |
commit | 2844aa6a8eb1d486b5c432f0ed33a2082998f41e (patch) | |
tree | b49e2a0b9c3bd28d311ace81165c298c969d4faa /Doc | |
parent | 044bcc1771fe7e2f8eba21793a72ba15e75e6715 (diff) | |
download | cpython-2844aa6a8eb1d486b5c432f0ed33a2082998f41e.zip cpython-2844aa6a8eb1d486b5c432f0ed33a2082998f41e.tar.gz cpython-2844aa6a8eb1d486b5c432f0ed33a2082998f41e.tar.bz2 |
Support comparing two sets of pystats (GH-98816)
This adds support for comparing pystats collected from two different builds.
- The `--json-output` can be used to load in a set of raw stats and output a
JSON file.
- Two of these JSON files can be provided on the next run, and then comparative
results between the two are output.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/configure.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index b99d9bd..860378c 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -131,7 +131,8 @@ General Options Turn on internal statistics gathering. The statistics will be dumped to a arbitrary (probably unique) file in - ``/tmp/py_stats/``, or ``C:\temp\py_stats\`` on Windows. + ``/tmp/py_stats/``, or ``C:\temp\py_stats\`` on Windows. If that directory + does not exist, results will be printed on stdout. Use ``Tools/scripts/summarize_stats.py`` to read the stats. |