Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 207 Bytes

94_nothing_box.md

File metadata and controls

13 lines (12 loc) · 207 Bytes
>>> import sys
>>> def f():
...     name = sys._getframe().f_code.co_name
...     globals().pop(name)
...
>>> f()
>>> f()
Traceback (most recent call last):
  ...
NameError: name 'f' is not defined