Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 54a6875

Browse filesBrowse files
authored
gh-119535: 3.15 minus π (#134037)
* Revert "gh-119535: Support 𝜋thon in Python 3.14 venvs (#125035)" This reverts commit fcef3fc. * Revert "gh-119535: python𝜋 (#119536)" This reverts commit 3fc673e.
1 parent 7eaa097 commit 54a6875
Copy full SHA for 54a6875

File tree

1 file changed

+2
-5
lines changed
Filter options

1 file changed

+2
-5
lines changed

‎Lib/venv/__init__.py

Copy file name to clipboardExpand all lines: Lib/venv/__init__.py
+2-5Lines 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('𝜋thon')
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.