Is there any difference between
try:
1 # some exception
except:
pass
and
try:
1 # some exception
except Exception:
pass
Please note: This question is not about whether bare exceptions are not be used or not, it is about whether there is any – let it be as little as needed – difference between these two implementations.
2