
April 19, 2018
2:26 a.m.
On Apr 18, 2018, at 11:17, Chris Angelico <rosuav@gmail.com> wrote:
At the moment, it isn't aware of 'del’.
I don’t know if it’s relevant to the current discussion, but don’t forget about implicit dels: def foo(): x = 1 try: 1/0 except ZeroDivisionError as x: pass print(x) This is one of my favorite Python oddities because it always makes me look like a genius when I diagnose it. :) -Barry