show/hide this revision's text 3 Rollback to Revision 1

You can use the Python garbage collector interface provided to more closely examine what (if anything) is being left around in the second case. Specifically, you may want to check out gc.get_objects() to see what is left uncollected, or gc.garbage to see if you have any reference cycles.

Edit: Have you tried explicitly triggering a gc after each code snippet? It is possible that exiting a function will trigger gc, but just calling del will not.

I agree with the other answer in that you probably don't need to worry about this - in both cases the memory has been released, when it actually gets freed shouldn't matter much. There is nothing inherently "better" about garbage collection when using functions vs. not using functions.

show/hide this revision's text 2 respond to comment

You can use the Python garbage collector interface provided to more closely examine what (if anything) is being left around in the second case. Specifically, you may want to check out gc.get_objects() to see what is left uncollected, or gc.garbage to see if you have any reference cycles.

Edit: Have you tried explicitly triggering a gc after each code snippet? It is possible that exiting a function will trigger gc, but just calling del will not.

I agree with the other answer in that you probably don't need to worry about this - in both cases the memory has been released, when it actually gets freed shouldn't matter much. There is nothing inherently "better" about garbage collection when using functions vs. not using functions.

show/hide this revision's text 1

You can use the Python garbage collector interface provided to more closely examine what (if anything) is being left around in the second case. Specifically, you may want to check out gc.get_objects() to see what is left uncollected, or gc.garbage to see if you have any reference cycles.