Files
openide/python/testData/refactoring/extractmethod/TryContext.before.py
2012-05-16 15:26:52 +04:00

7 lines
117 B
Python

def foo(f):
x = 1
<selection>try:
x = f()
except Exception:
pass</selection>
return x