On Apr 18, 2018, at 11:17, Chris Angelico <[email protected]> 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
signature.asc
Description: Message signed with OpenPGP
_______________________________________________ Python-Dev mailing list [email protected] https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
