Files
andrey.matveev 965121e9dc [PY-26418] Fix removing whole with statement if target is unused
GitOrigin-RevId: 217ee91cebf600fa0035c2534d1b00878cf41858
2020-07-21 10:42:32 +00:00

6 lines
149 B
Python

def f():
try:
print('something')
except Exception, <caret>e:
# ... Code that does not use 'e'
print('something else')