Given modern python language servers, is there a way to enumerate exception types that might get raised?

47 Views Asked by At

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.

0

There are 0 best solutions below