Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eaa097 commit 54a6875Copy full SHA for 54a6875
Lib/venv/__init__.py
@@ -313,11 +313,8 @@ def setup_python(self, context):
313
copier(context.executable, path)
314
if not os.path.islink(path):
315
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:
+ for suffix in ('python', 'python3',
+ f'python3.{sys.version_info[1]}'):
321
path = os.path.join(binpath, suffix)
322
if not os.path.exists(path):
323
# Issue 18807: make copies if
0 commit comments