detect unreachable `except` blocks
Author: DetachHeadCreated Jun 9, 2026Updated Sep 22, 2026
Labelstypechecking
try:
...
except BaseException:
...
except Exception: # unreachable
...pyright has a rule for this: reportUnusedExcept but maybe it makes sense for this under the existing unreachable code
Source: facebook/pyrefly