[Python-bugs-list] Re: [Bug #115341] Todays CVS python dumps core in gcmodule.c?!

Neil Schemenauer nascheme@enme.ucalgary.ca
Tue, 26 Sep 2000 08:48:59 -0600


[Rob]
> Details: While tracing a bug in my own code, I got a core dump from
> python.  Since it is extremely difficult to find out WHERE in my 58k
> lines of code this happens,  I can't just make a small test case. I
> thought at this stage it might be useful to report anyway.

Can you try compiling Python with Py_DEBUG defined?  Also, calling
gc.set_debug(gc.DEBUG_LEAK) and gc.set_threshold(1) may help to trigger
the bug closer to the source of the problem.

[Guido]
> Neil, can you have a look at this?

Without being able to reproduce this its hard to do anything.  It looks
like a gc_next pointer is NULL.  I'll have to think really hard about it
some more. :)

  Neil