Skip to content

Instantly share code, notes, and snippets.

@gabrielhpugliese
Created October 25, 2013 02:08
Show Gist options
  • Select an option

  • Save gabrielhpugliese/7148455 to your computer and use it in GitHub Desktop.

Select an option

Save gabrielhpugliese/7148455 to your computer and use it in GitHub Desktop.
>>> import gc
>>> gc.isenabled()
True
>>> gc.get_count()
(411, 8, 0)
>>> def a():
... import functools
... return
...
>>> gc.get_count()
(426, 8, 0)
>>> a()
>>> gc.get_count()
(491, 8, 0)
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment