_core.py 300 B

1234567891011
  1. SHELL_NAMES = (
  2. {"sh", "bash", "dash", "ash"} # Bourne.
  3. | {"csh", "tcsh"} # C.
  4. | {"ksh", "zsh", "fish"} # Common alternatives.
  5. | {"cmd", "powershell", "pwsh"} # Microsoft.
  6. | {"elvish", "xonsh", "nu"} # More exotic.
  7. )
  8. class ShellDetectionFailure(EnvironmentError):
  9. pass