[Python-Dev] Linus on garbage collection

Nick Coghlan ncoghlan at gmail.com
Sat May 7 02:12:33 CEST 2011


Even if he's right (and he probably is) manual memory management is still a premature optimization for most applications. C and C++ data structures are a PITA because you have to be so careful to avoid leaks and double-frees, so people end up using dumb algorithms. Worrying about losing cycles waiting for main memory is stupid if your high level algorithm is O(N^2).

Cheers,
Nick.

--
Nick Coghlan, Brisbane, Australia

On 07/05/2011, at 12:04 AM, Neal Becker <ndbecker2 at gmail.com> wrote:

> http://gcc.gnu.org/ml/gcc/2002-08/msg00552.html
> 
> _______________________________________________
> Python-Dev mailing list
> Python-Dev at python.org
> http://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: http://mail.python.org/mailman/options/python-dev/ncoghlan%40gmail.com


More information about the Python-Dev mailing list