diff options
author | foreignmeloman <foreignmeloman@gmail.com> | 2024-10-15 10:26:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 10:26:19 (GMT) |
commit | fcef3fc9a593e2aa868d23cf2d91c57d8bf60ac6 (patch) | |
tree | 27cbff66293058630f6102c577e4c614ec599b04 | |
parent | aa18fd55d575a04e3aa782fedcd08dced26676e0 (diff) | |
download | cpython-fcef3fc9a593e2aa868d23cf2d91c57d8bf60ac6.zip cpython-fcef3fc9a593e2aa868d23cf2d91c57d8bf60ac6.tar.gz cpython-fcef3fc9a593e2aa868d23cf2d91c57d8bf60ac6.tar.bz2 |
gh-119535: Support 𝜋thon in Python 3.14 venvs (#125035)
-rw-r--r-- | Lib/venv/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index a00fa69..a5d348b 100644 --- a/Lib/venv/__init__.py +++ b/Lib/venv/__init__.py @@ -306,7 +306,7 @@ class EnvBuilder: suffixes = ['python', 'python3', f'python3.{sys.version_info[1]}'] if sys.version_info[:2] == (3, 14): - suffixes.append('python𝜋') + suffixes.append('𝜋thon') for suffix in suffixes: path = os.path.join(binpath, suffix) if not os.path.exists(path): |