Is python gc.collect() a stop-the-world (STW) garbage collector?
If it is a STW garbage collector, where and when to stop the world?
I know python uses deterministic reference counting, and this do not need stop the world. However, when handling the cycles, does python need stop the world?