diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-28 12:02:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 12:02:45 (GMT) |
commit | 87c6cf9aa7cebac3c544067e690c2ad7ce18b772 (patch) | |
tree | 6b3949ea9c241af6ef9627556727b3438cb97c59 /Doc/using | |
parent | 88dd22795925a8f47d38737ca8067eeb3f0a13aa (diff) | |
download | cpython-87c6cf9aa7cebac3c544067e690c2ad7ce18b772.zip cpython-87c6cf9aa7cebac3c544067e690c2ad7ce18b772.tar.gz cpython-87c6cf9aa7cebac3c544067e690c2ad7ce18b772.tar.bz2 |
gh-89479: Export _Py_GetSpecializationStats() internal function (#92011)
When Python is built with "./configure --enable-pystats" (if the
Py_STATS macro is defined), the _Py_GetSpecializationStats() function
must be exported, since it's used by the _opcode extension which is
built as a shared library.
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/configure.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 057efa3..2321d24 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -139,7 +139,7 @@ General Options The statistics will be dumped to a arbitrary (probably unique) file in ``/tmp/py_stats/``, or ``C:\temp\py_stats\`` on Windows. - Use ``Tools//summarize_stats.py`` to read the stats. + Use ``Tools/scripts/summarize_stats.py`` to read the stats. .. versionadded:: 3.11 |