diff options
author | Paul Moore <p.f.moore@gmail.com> | 2022-06-26 16:49:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-26 16:49:03 (GMT) |
commit | aedb5194d590692918a8a070cbde2727fe178f49 (patch) | |
tree | e09f9bb36292ec146b86a1e86e52e72fd4c8c8b5 /Lib/venv | |
parent | bb8b931385ba9df4e01f7dd3ce4575d49f60efdf (diff) | |
download | cpython-aedb5194d590692918a8a070cbde2727fe178f49.zip cpython-aedb5194d590692918a8a070cbde2727fe178f49.tar.gz cpython-aedb5194d590692918a8a070cbde2727fe178f49.tar.bz2 |
gh-94214: Add venv context.lib_path and document the context (GH-94221)
Diffstat (limited to 'Lib/venv')
-rw-r--r-- | Lib/venv/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index 6032f36..f6b790e 100644 --- a/Lib/venv/__init__.py +++ b/Lib/venv/__init__.py @@ -138,6 +138,7 @@ class EnvBuilder: context.inc_path = incpath create_if_needed(incpath) + context.lib_path = libpath create_if_needed(libpath) # Issue 21197: create lib64 as a symlink to lib on 64-bit non-OS X POSIX if ((sys.maxsize > 2**32) and (os.name == 'posix') and |