Skip to content

Commit 6594616

Browse files
committed
Revert "gh-119535: python𝜋 (#119536)"
This reverts commit 3fc673e.
1 parent 6fd092b commit 6594616

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Lib/venv/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,11 +313,8 @@ def setup_python(self, context):
313313
copier(context.executable, path)
314314
if not os.path.islink(path):
315315
os.chmod(path, 0o755)
316-
317-
suffixes = ['python', 'python3', f'python3.{sys.version_info[1]}']
318-
if sys.version_info[:2] == (3, 14):
319-
suffixes.append('python𝜋')
320-
for suffix in suffixes:
316+
for suffix in ('python', 'python3',
317+
f'python3.{sys.version_info[1]}'):
321318
path = os.path.join(binpath, suffix)
322319
if not os.path.exists(path):
323320
# Issue 18807: make copies if

0 commit comments

Comments
 (0)