istisnaları gerçekten yönetmeniz gerekiyorsa:
(poke53280'in cevabından değiştirilmiştir)
>>> def try_or(fn, exceptions: dict = {}):
try:
return fn()
except Exception as ei:
for e in ei.__class__.__mro__[:-1]:
if e in exceptions: return exceptions[e]()
else:
raise
>>> def context():
return 1 + None
>>> try_or( context, {TypeError: lambda: print('TypeError exception')} )
TypeError exception
>>>
istisna desteklenmiyorsa, beklendiği gibi artacağını unutmayın:
>>> try_or( context, {ValueError: lambda: print('ValueError exception')} )
Traceback (most recent call last):
File "<pyshell#57>", line 1, in <module>
try_or( context, {ValueError: lambda: print('ValueError exception')} )
File "<pyshell#38>", line 3, in try_or
return fn()
File "<pyshell#56>", line 2, in context
return 1 + None
TypeError: unsupported operand type(s) for +: 'int' and 'NoneType'
>>>
ayrıca Exception
verilirse, aşağıdaki herhangi bir şeyle eşleşecektir.
( BaseException
daha yüksek, bu yüzden eşleşmeyecek)
>>> try_or( context, {Exception: lambda: print('exception')} )
exception