(prefix: Prefix, version: str)
| 122 | |
| 123 | @contextlib.contextmanager |
| 124 | def in_env(prefix: Prefix, version: str) -> Generator[None]: |
| 125 | envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version) |
| 126 | with envcontext(get_env_patch(envdir, version)): |
| 127 | yield |
| 128 | |
| 129 | |
| 130 | def install_environment( |
nothing calls this directly
no test coverage detected