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 7073587 commit 91d71acCopy full SHA for 91d71ac
Lib/venv/__init__.py
@@ -315,7 +315,7 @@ def setup_python(self, context):
315
os.chmod(path, 0o755)
316
317
suffixes = ['python', 'python3', f'python3.{sys.version_info[1]}']
318
- if sys.version_info[:2] == (3, 14):
+ if sys.version_info[:2] == (3, 14) and sys.getfilesystemencoding() == 'utf-8':
319
suffixes.append('𝜋thon')
320
for suffix in suffixes:
321
path = os.path.join(binpath, suffix)
0 commit comments