From: foreignmeloman Date: Tue, 15 Oct 2024 10:26:19 +0000 (+0400) Subject: gh-119535: Support 𝜋thon in Python 3.14 venvs (#125035) X-Git-Tag: v3.14.0a1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fcef3fc9a593e2aa868d23cf2d91c57d8bf60ac6;p=thirdparty%2FPython%2Fcpython.git gh-119535: Support 𝜋thon in Python 3.14 venvs (#125035) --- diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index a00fa690fa0b..a5d348ba4cf1 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):