Ethan Furman wrote:
Let me ask a different question: How much effort is required at the C level when using tracing garbage collection?

That depends on the details of the GC implementation, but often
you end up swapping one form of boilerplate (maintaining ref
counts) for another (such as making sure the GC system knows
about all the temporary references you're using).

Some, such as the Bohm collector, try to figure it all out
automagically, but they rely on non-portable tricks and aren't
totally reliable.

--
Greg
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to