Skip to content

Instantly share code, notes, and snippets.

@jkarres
Created January 14, 2015 20:42
Show Gist options
  • Save jkarres/71d681d6faf0d46e8bc8 to your computer and use it in GitHub Desktop.
Save jkarres/71d681d6faf0d46e8bc8 to your computer and use it in GitHub Desktop.
class C(object):
def __del__(self):
pass
i = 0
while True:
if i == 1000000:
i = 0
print '.',
c = C()
i += 1
@jkarres
Copy link
Author

jkarres commented Jan 15, 2015

Leaks memory in iron python

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment