What does gc.get_objects() return?

Chris Angelico rosuav at gmail.com
Wed Mar 12 19:14:07 EDT 2014


On Thu, Mar 13, 2014 at 9:35 AM, Ian Kelly <ian.g.kelly at gmail.com> wrote:
> Or is it?
>
>>>> a = 1,2,3
>>>> gc.is_tracked(a)
> True
>>>> gc.collect()
> 0
>>>> gc.is_tracked(a)
> False

Huh, *that* is interesting!

ChrisA



More information about the Python-list mailing list