New submission from Łukasz Balcerzak:
virtualenv tool allows to set alternative prompt prefix, Python's venv module
should allow this too.
Basically, this allows one to run:
python -mvenv --prompt Quux myenv
And see "(Quux)" as a prefix after environment activation (instead
New submission from Łukasz Balcerzak:
In projects I work on I constantly end up creating something like:
abspath = lambda *p: os.path.abspath(os.path.join(*p))
This could be easily avoided by allowing abspath to accept multiple arguments.
This would be:
1. Backward compatibile (calls