diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2023-10-05 17:27:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 17:27:19 (GMT) |
commit | a13620685f68957c965fca89343a0e91f95f1bab (patch) | |
tree | 92c3fc9749216568467fa8d82c52656bda2a072f /Doc | |
parent | a973bf0f97e55ace9eab100f9eb95d7eedcb28ac (diff) | |
download | cpython-a13620685f68957c965fca89343a0e91f95f1bab.zip cpython-a13620685f68957c965fca89343a0e91f95f1bab.tar.gz cpython-a13620685f68957c965fca89343a0e91f95f1bab.tar.bz2 |
Fix env var typo in perf profiling docs (#110404)
Fix typo in docs
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/perf_profiling.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/howto/perf_profiling.rst b/Doc/howto/perf_profiling.rst index 61812c1..af7b67d 100644 --- a/Doc/howto/perf_profiling.rst +++ b/Doc/howto/perf_profiling.rst @@ -162,8 +162,7 @@ the :option:`!-X` option takes precedence over the environment variable. Example, using the environment variable:: - $ PYTHONPERFSUPPORT=1 - $ python script.py + $ PYTHONPERFSUPPORT=1 python script.py $ perf report -g -i perf.data Example, using the :option:`!-X` option:: |