Skip to content

Instantly share code, notes, and snippets.

@a-recknagel
Created September 7, 2018 11:30
Show Gist options
  • Save a-recknagel/6e0c91e656155f9f104b65bf0fbea9aa to your computer and use it in GitHub Desktop.
Save a-recknagel/6e0c91e656155f9f104b65bf0fbea9aa to your computer and use it in GitHub Desktop.
Why? D:
class Immortal:
def __del__(self):
global x
x = self
x = Immortal()
del x
del x
del x # NameError: name 'x' is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment