bpo-35661: Store the venv prompt in pyvenv.cfg (GH-11440)

This commit is contained in:
Cheryl Sabella 2019-03-08 17:01:27 -05:00 committed by GitHub
parent 2aab5d310c
commit d5a70c6b03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 0 deletions

View file

@ -154,6 +154,8 @@ class EnvBuilder:
incl = 'false'
f.write('include-system-site-packages = %s\n' % incl)
f.write('version = %d.%d.%d\n' % sys.version_info[:3])
if self.prompt is not None:
f.write(f'prompt = {self.prompt!r}\n')
def symlink_or_copy(self, src, dst, relative_symlinks_ok=False):
"""