cpython/Lib/venv
Miss Islington (bot) d126fbddc9 bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15974)
Before, running deactivate from a bash shell configured to treat undefined variables as errors (`set -u`) would produce a warning:

```
$ python3 -m venv test
$ source test/bin/activate
(test) $ deactivate
-bash: $1: unbound variable
```
(cherry picked from commit 5209e586b7)

Co-authored-by: Daniel Abrahamsson <hamsson@gmail.com>
2019-09-11 08:56:27 -07:00
..
scripts bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15974) 2019-09-11 08:56:27 -07:00
__init__.py bpo-37369: Fix venv and test symlinking (GH-14456) 2019-06-28 11:41:55 -07:00
__main__.py