cursorless
cursorless copied to clipboard
Python: no way to target type of exception in except block
In the following code
try:
pass
except ValueError:
pass
There is no way to target ValueError. I would argue for either "type" or "value".