[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread Thomas Wouters
Thomas Wouters added the comment: Thanks, fix merged. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread Thomas Wouters
Thomas Wouters added the comment: New changeset d126fbddc960afd93ff070bc34209be256152943 by T. Wouters (Miss Islington (bot)) in branch '3.7': bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15974) https://github.com/python/cpython/commit/d126fbddc960afd93ff070bc3420

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread Thomas Wouters
Thomas Wouters added the comment: New changeset 63eefc35674ec12ab4d00af4feaf21de4cb1c91c by T. Wouters (Miss Islington (bot)) in branch '3.8': bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15973) https://github.com/python/cpython/commit/63eefc35674ec12ab4d00af4feaf

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15606 pull_request: https://github.com/python/cpython/pull/15973 ___ Python tracker ___ __

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15607 pull_request: https://github.com/python/cpython/pull/15974 ___ Python tracker ___ __

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread Thomas Wouters
Thomas Wouters added the comment: New changeset 5209e586b7cac9a43b2c44349a26b1b0af06ead3 by T. Wouters (Daniel Abrahamsson) in branch 'master': bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15330) https://github.com/python/cpython/commit/5209e586b7cac9a43b2c44349a2

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-08-19 Thread Daniel Abrahamsson
Change by Daniel Abrahamsson : -- keywords: +patch pull_requests: +15048 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15330 ___ Python tracker _

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-08-19 Thread Daniel Abrahamsson
New submission from Daniel Abrahamsson : Running deactivate from a bash shell configured to treat undefined variables as errors (`set -u`) produces a warning: ``` $ python3 -m venv test $ source test/bin/activate (test) $ deactivate -bash: $1: unbound variable ``` -- components: Libr