Skip to content

Commit

Permalink
gh-119535: Support 𝜋thon in Python 3.14 venvs (#125035)
Browse files Browse the repository at this point in the history
  • Loading branch information
foreignmeloman authored Oct 15, 2024
1 parent aa18fd5 commit fcef3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/venv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit fcef3fc

Please sign in to comment.