Б
Size: a a a
Б
Б
e
e
e
I
I
p
Б
p
ED
I
ЛЛ
PR
I
I
I
Б

import pyjion
pyjion.enable()
def p():
pass
def try_except():
try:
pass
except:
pass
def try_except_exception():
try:
pass
except Exception:
pass
def try_finally():
try:
pass
finally:
pass
try_except()
try_except_exception()
try_finally()
print(*(pyjion.info(f).compile_result for f in (p, try_finally, try_except_exception, try_finally)), sep='\n')
CompilationResult.Success
CompilationResult.IncompatibleOpcode_WithExcept
CompilationResult.IncompatibleOpcode_WithExcept
CompilationResult.IncompatibleOpcode_WithExceptDB
e