[issue13616] Never ending loop in in update_refs Modules/gcmodule.c

Amaury Forgeot d'Arc report at bugs.python.org
Sat Dec 17 00:43:33 CET 2011


Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:

Are you sure that the program is really stuck in the gc module?
The loop you mention has to go through all objects of the process.  It's possible that it allocated many objects, that one garbage collection takes a few seconds, and even that most of the time is spent inside the garbage collector.
But can you check whether this function terminates?  For example, you could put a breakpoint in the collect() function.

----------
nosy: +amaury.forgeotdarc

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13616>
_______________________________________


More information about the Python-bugs-list mailing list