Created
January 14, 2015 20:42
-
-
Save jkarres/71d681d6faf0d46e8bc8 to your computer and use it in GitHub Desktop.
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 C(object): | |
def __del__(self): | |
pass | |
i = 0 | |
while True: | |
if i == 1000000: | |
i = 0 | |
print '.', | |
c = C() | |
i += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Leaks memory in iron python