Tracking down memory leaks?

Rene Pijlman reply.in.the.newsgroup at my.address.is.invalid
Sun Feb 12 14:55:04 EST 2006


malv:
>Is there any way for making Python return memory no longer needed to
>the OS? Cases may arise where you indeed need a big memory block
>temporarily without being able to split it up into smaller chunks.

That's not really necessary. On any decent OS it's just unused address
space, that doesn't consume any physical memory.

And when your process runs out of address space, you should program more
carefully :-)

-- 
René Pijlman



More information about the Python-list mailing list