From aef6a2a6d04c078d97b3e559b0f821a22066de7e Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Sun, 15 Dec 2024 21:20:49 +0300 Subject: [PATCH] Remove incorrect statement about resolution behavior `shell` does not fall through to `local`, and `local to `global`. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 6b51437a..5eebb3c4 100644 --- a/README.md +++ b/README.md @@ -400,7 +400,6 @@ pyenv global 3.11 3.12 ~~~ Whenever you run a command provided by a Python installation, these versions will be searched for it in the specified order. -Versions selected with `pyenv shell` are searched first, then `pyenv local`, then `pyenv global`. [Due to the shims' fall-through behavior]((#understanding-python-version-selection)), `system` is always implicitly searched afterwards. ----