()
| 238 | } |
| 239 | |
| 240 | fn venv_executable() -> Option<PathBuf> { |
| 241 | activated_venv().or_else(venv_path_search) |
| 242 | } |
| 243 | |
| 244 | // https://en.m.wikipedia.org/wiki/Shebang_(Unix) |
| 245 | fn parse_python_shebang(reader: &mut impl Read) -> Option<RequestedVersion> { |
no test coverage detected