python / python/cpython

sys.executable can be a relative path contrary to documented behavior [3.11 regression]

未關閉
#154,160 0 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視

還沒有人認領這個 Issue。

extension-modules type-bug
主要語言
Python
星號
77.2k
分支
35.9k
PR 合併指標
PR 指標待擷取

描述

Bug report

Bug description:

When PATH contains a relative directory, sys.executable will also be a relative directory contrary to the current sys.executable documentation:

A string giving the absolute path of the executable binary for the Python interpreter, on systems where this makes sense. If Python is unable to retrieve the real path to its executable, sys.executable will be an empty string or None.

Context: I have a script that uses a custom virtualenv for dependencies that invokes itself in a different working directory. Because cwd is different, it relies on os.executable to be absolute. Minimal reproducer, set up python3 -m venv venv, then run PATH="venv/bin:$PATH" python3 script.py; using $PWD/venv/bin instead is a workaround for this issue.

import sys, subprocess; subprocess.run([sys.executable, "--version"], cwd="/tmp")

Alternative reproducer that reveals the issue:

$ python3 -m venv venv && PATH="venv/bin:$PATH" python3 -c 'import sys;print(sys.executable, sys.version.split()[0])'
<frozen site>:101: RuntimeWarning: Unexpected value in sys.prefix, expected /home/arch/venv, got venv
<frozen site>:101: RuntimeWarning: Unexpected value in sys.exec_prefix, expected /home/arch/venv, got venv
venv/bin/python3 3.14.6

This used to work in Python 3.10 and before, and is broken in Python 3.11 (2022) up to at least 3.14.6 and 3.15.0b3. I used this reproducer to confirm:

$ podman run --rm python:3.11-slim env PATH=usr/local/bin python3 -c 'import sys;print(sys.executable, sys.version.split()[0])'
usr/local/bin/python3 3.11.15

Another mild regression is the presence of an extra leading slash when using a relative path from the root directory:

$ podman run --rm python:3.15-rc-slim usr/local/bin/python3 -c 'import sys;print(sys.executable, sys.version.split()[0])'
//usr/local/bin/python3 3.15.0b3

$ podman run --rm python:3.10-slim usr/local/bin/python3 -c 'import sys;print(sys.executable, sys.version.split()[0])'
/usr/local/bin/python3 3.10.20

I suspect that both regressions have something to do with the refactoring done in https://bugs.python.org/issue45582 (#29041 by @zooba).
Somewhat related is #124241, that report is not about a relative path, but a modified argv[0]. Its current proposed fix to rely on /proc/self/exe (#145486 by @FFY00) could fix this issue, but has new regression risks.

CPython versions tested on:

3.15, 3.14, 3.13, 3.12, 3.11

Operating systems tested on:

Linux

Linked PRs
  • gh-154163

貢獻指南

開啟貢獻指南

從這裡開始

  1. 先讀完整個 Issue,再讀專案的貢獻指南。
  2. 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
  3. Fork 儲存庫,在一個分支上完成修改。
  4. 送出 Pull Request,並在描述裡引用這個 Issue 編號。

研究方向

先從 issue 中最小的 Python 和容器重現程式開始,接著閱讀 #29041 中的重構,以及 #124241 和 PR #145486 中的相關提案。連結的 PR #154163 表示相關工作已經在進行中;完成後應為相對 PATH 項目恢復絕對的 sys.executable,並在受影響的 Python 版本中避免額外的前導斜線。

由索引模型根據 Issue 內容生成。

評估

技術堆疊
python
領域
operating-systems
Issue 類型
缺陷
難度
4/5
預估耗時
3-5 天
活躍度
停滯
描述清晰度
基本清楚
新手友好度
25/100

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。