Hacker News new | ask | show | jobs
by kbd 3443 days ago
> Similar to turning off the GC in the JVM

It's absolutely not the same. The JVM uses GC for all object collection. Python uses reference counting and only relies on GC to clean up cycles.