summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-02-12 12:02:29 (GMT)
committerGitHub <noreply@github.com>2020-02-12 12:02:29 (GMT)
commit4fac7ed43ebf1771a8fe86fdfe7b9991f3be78cd (patch)
tree492868bf58bacf625bba43b28d1c9205890db609 /Misc
parent8c579b1cc86053473eb052b76327279476740c9b (diff)
downloadcpython-4fac7ed43ebf1771a8fe86fdfe7b9991f3be78cd.zip
cpython-4fac7ed43ebf1771a8fe86fdfe7b9991f3be78cd.tar.gz
cpython-4fac7ed43ebf1771a8fe86fdfe7b9991f3be78cd.tar.bz2
bpo-21016: pydoc and trace use sysconfig (GH-18476)
bpo-21016, bpo-1294959: The pydoc and trace modules now use the sysconfig module to get the path to the Python standard library, to support uncommon installation path like /usr/lib64/python3.9/ on Fedora. Co-Authored-By: Jan Matějek <jmatejek@suse.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-02-12-10-04-39.bpo-21016.bFXPH7.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-02-12-10-04-39.bpo-21016.bFXPH7.rst b/Misc/NEWS.d/next/Library/2020-02-12-10-04-39.bpo-21016.bFXPH7.rst
new file mode 100644
index 0000000..fb91bb3
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-02-12-10-04-39.bpo-21016.bFXPH7.rst
@@ -0,0 +1,4 @@
+The :mod:`pydoc` and :mod:`trace` modules now use the :mod:`sysconfig`
+module to get the path to the Python standard library, to support uncommon
+installation path like ``/usr/lib64/python3.9/`` on Fedora.
+Patch by Jan Matějek.