blob: 0d34a585d7045074b3c50f4cb242d730701ab58c [file] [log] [blame]
class A:
def foo(self, dct, key):
try:
<selection> return dct[key]
except KeyError:
pass
</selection>