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

6 lines
105 B
Python

def foo(x):
<selection>try:
pass
except Exception:
raise</selection>
print(1)