diff options
author | 2024-01-10 09:18:22 +0200 | |
---|---|---|
committer | 2024-01-10 09:20:20 +0200 | |
commit | a2e3eed9e2484a313195284ec8df6034e80fb4e5 (patch) | |
tree | b9a68d57815e4c8c44d3f9bd89503b76e3f651d9 | |
parent | merge main into py3.9 (diff) | |
download | pypy-a2e3eed9e2484a313195284ec8df6034e80fb4e5.tar.gz pypy-a2e3eed9e2484a313195284ec8df6034e80fb4e5.tar.bz2 pypy-a2e3eed9e2484a313195284ec8df6034e80fb4e5.zip |
remove bogus file name from venv list
-rw-r--r-- | lib-python/3/venv/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-python/3/venv/__init__.py b/lib-python/3/venv/__init__.py index eef168a115..c526a5d3b4 100644 --- a/lib-python/3/venv/__init__.py +++ b/lib-python/3/venv/__init__.py @@ -267,7 +267,7 @@ class EnvBuilder: copier(context.executable, path) if not os.path.islink(path): os.chmod(path, 0o755) - for suffix in ('python', 'python3', f'python3.{sys.version_info[1]}', 'pypy3', 'pypy', 'lib*'): + for suffix in ('python', 'python3', f'python3.{sys.version_info[1]}', 'pypy3', 'pypy'): path = os.path.join(binpath, suffix) if not os.path.exists(path): # Issue 18807: make copies if |