This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients Guido.van.Rossum, gvanrossum, inglesp, pitrou, tim.golden, vstinner
Date 2014-05-05.22:30:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1399329030.42.0.37224932721.issue21435@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the gdb backtrace. The `gc` variable is equal to NULL.

0x000000000043d254 in finalize_garbage (collectable=0x7fffffffdc40, old=0x8fdae0 <generations+64>)
    at Modules/gcmodule.c:788
788	        if (!_PyGCHead_FINALIZED(gc) &&
(gdb) bt
#0  0x000000000043d254 in finalize_garbage (collectable=0x7fffffffdc40, old=0x8fdae0 <generations+64>)
    at Modules/gcmodule.c:788
#1  0x000000000043dac0 in collect (generation=2, n_collected=0x7fffffffdca8, n_uncollectable=0x7fffffffdcb0, nofail=0)
    at Modules/gcmodule.c:1009
#2  0x000000000043dffc in collect_with_callback (generation=2) at Modules/gcmodule.c:1128
#3  0x000000000043eda0 in PyGC_Collect () at Modules/gcmodule.c:1604
#4  0x000000000041f332 in Py_Finalize () at Python/pythonrun.c:607
#5  0x000000000043c401 in Py_Main (argc=2, argv=0x980020) at Modules/main.c:788
#6  0x000000000041af96 in main (argc=2, argv=0x7fffffffdfc8) at ./Modules/python.c:69

(gdb) p gc
$1 = (PyGC_Head *) 0x0
History
Date User Action Args
2014-05-05 22:30:30pitrousetrecipients: + pitrou, gvanrossum, vstinner, tim.golden, inglesp, Guido.van.Rossum
2014-05-05 22:30:30pitrousetmessageid: <1399329030.42.0.37224932721.issue21435@psf.upfronthosting.co.za>
2014-05-05 22:30:30pitroulinkissue21435 messages
2014-05-05 22:30:29pitroucreate