mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
bpo-38901: Allow setting a venv's prompt to the basename of the current directory. (GH-17946)
When a prompt value of '.' is specified, os.path.basename(os.getcwd()) is used to configure the prompt for the created venv.
This commit is contained in:
parent
4b0d91aab4
commit
7d6378051f
4 changed files with 16 additions and 1 deletions
|
|
@ -122,7 +122,8 @@ creation according to their needs, the :class:`EnvBuilder` class.
|
|||
|
||||
* ``prompt`` -- a String to be used after virtual environment is activated
|
||||
(defaults to ``None`` which means directory name of the environment would
|
||||
be used).
|
||||
be used). If the special string ``"."`` is provided, the basename of the
|
||||
current directory is used as the prompt.
|
||||
|
||||
* ``upgrade_deps`` -- Update the base venv modules to the latest on PyPI
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue