We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02fcd78 commit 2875923Copy full SHA for 2875923
Lib/venv/__init__.py
@@ -303,8 +303,11 @@ def setup_python(self, context):
303
copier(context.executable, path)
304
if not os.path.islink(path):
305
os.chmod(path, 0o755)
306
- for suffix in ('python', 'python3',
307
- f'python3.{sys.version_info[1]}'):
+
+ suffixes = ['python', 'python3', f'python3.{sys.version_info[1]}']
308
+ if sys.version_info[:2] == (3, 14):
309
+ suffixes.append('python𝜋')
310
+ for suffix in suffixes:
311
path = os.path.join(binpath, suffix)
312
if not os.path.exists(path):
313
# Issue 18807: make copies if
0 commit comments