at master 448 B view raw
1diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py 2index 4856594755..6769ab8026 100644 3--- a/Lib/venv/__init__.py 4+++ b/Lib/venv/__init__.py 5@@ -522,6 +522,7 @@ def skip_file(f): 6 with open(dstfile, 'wb') as f: 7 f.write(new_data) 8 shutil.copymode(srcfile, dstfile) 9+ os.chmod(dstfile, 0o644) 10 11 def upgrade_dependencies(self, context): 12 logger.debug(