https://github.com/python/cpython/commit/fcef3fc9a593e2aa868d23cf2d91c57d8bf60ac6
commit: fcef3fc9a593e2aa868d23cf2d91c57d8bf60ac6
branch: main
author: foreignmeloman <[email protected]>
committer: hugovk <[email protected]>
date: 2024-10-15T13:26:19+03:00
summary:
gh-119535: Support 𝜋thon in Python 3.14 venvs (#125035)
files:
M Lib/venv/__init__.py
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py
index a00fa690fa0b88..a5d348ba4cf121 100644
--- a/Lib/venv/__init__.py
+++ b/Lib/venv/__init__.py
@@ -306,7 +306,7 @@ def setup_python(self, context):
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):
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]