-
-
Save a-recknagel/6e0c91e656155f9f104b65bf0fbea9aa to your computer and use it in GitHub Desktop.
Why? D:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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