[issue29308] venv should match virtualenv VIRTUAL_ENV_DISABLE_PROMPT config

2017-01-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 91b949dc1984 by Vinay Sajip in branch '3.5': Fixes #29308: Respect VIRTUAL_ENV_DISABLE_PROMPT in Activate.ps1. https://hg.python.org/cpython/rev/91b949dc1984 New changeset d3890b44159c by Vinay Sajip in branch '3.6': Fixes #29308: Merged fix from

[issue29308] venv should match virtualenv VIRTUAL_ENV_DISABLE_PROMPT config

2017-01-24 Thread Jack Bennett
Jack Bennett added the comment: That works fine here. Thank you On 24 January 2017 at 13:15, Vinay Sajip wrote: > > Vinay Sajip added the comment: > > Other scripts (activate, activate.csh, activate.csh) support this > environment variable already. This patch updates

[issue29308] venv should match virtualenv VIRTUAL_ENV_DISABLE_PROMPT config

2017-01-24 Thread Vinay Sajip
Vinay Sajip added the comment: Other scripts (activate, activate.csh, activate.csh) support this environment variable already. This patch updates Activate.ps1 to respect the variable - can you confirm if this change works for you? -- assignee: -> vinay.sajip keywords: +patch stage:

[issue29308] venv should match virtualenv VIRTUAL_ENV_DISABLE_PROMPT config

2017-01-18 Thread Chi Hsuan Yen
Changes by Chi Hsuan Yen : -- nosy: +vinay.sajip ___ Python tracker ___ ___

[issue29308] venv should match virtualenv VIRTUAL_ENV_DISABLE_PROMPT config

2017-01-18 Thread Jack Bennett
New submission from Jack Bennett: virtualenv has https://virtualenv.pypa.io/en/latest/reference/#envvar-VIRTUAL_ENV_DISABLE_PROMPT to block activate from trying to overwrite the prompt function. Users of venv can't do that, 3.6 added prompt but even None defaults to the current folder name.