Given Python's dynamic nature, it's historically been really hard to work out what exception types could get raised from a given code path
Nowadays, language servers (e.g., VSCode’s python) can statically work out a ton of typing and other information from your code which was really hard in the past.
Is there a thing that will enumerate exceptions?
Even partial/best guess enumerations of potential exception types would be welcome.