diff options
author | Filipe Laíns 🇵🇸 <lains@riseup.net> | 2024-11-17 01:56:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-17 01:56:01 (GMT) |
commit | 9d6366b60d01305fc5e45100e0cd13e358aa397d (patch) | |
tree | 5da75b08ee041dfd662ab270196f39aa50f53ef3 /Misc/NEWS.d/next | |
parent | acbd5c9c6c62dac34d2ed1a789d36fe61841c16d (diff) | |
download | cpython-9d6366b60d01305fc5e45100e0cd13e358aa397d.zip cpython-9d6366b60d01305fc5e45100e0cd13e358aa397d.tar.gz cpython-9d6366b60d01305fc5e45100e0cd13e358aa397d.tar.bz2 |
GH-126920: fix Makefile overwriting sysconfig.get_config_vars
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-11-17-01-14-59.gh-issue-126920.s8-f_L.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-17-01-14-59.gh-issue-126920.s8-f_L.rst b/Misc/NEWS.d/next/Library/2024-11-17-01-14-59.gh-issue-126920.s8-f_L.rst new file mode 100644 index 0000000..6966aec --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-11-17-01-14-59.gh-issue-126920.s8-f_L.rst @@ -0,0 +1,5 @@ +Fix the ``prefix`` and ``exec_prefix`` keys from +:py:func:`sysconfig.get_config_vars` incorrectly having the same value as +:py:const:`sys.base_prefix` and :py:const:`sys.base_exec_prefix`, +respectively, inside virtual environments. They now accurately reflect +:py:const:`sys.prefix` and :py:const:`sys.exec_prefix`. |