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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, jnoller, rthalley
Date 2010-10-20.23:51:08
SpamBayes Score 6.8508433e-07
Marked as misclassified No
Message-id <1287618670.35.0.86611880515.issue10158@psf.upfronthosting.co.za>
In-reply-to
Content
Does it happen when compiled in debug mode? There may be asserts that will give a better (or earlier) error message.

Some thoughts: the '_PyTrash_delete_later' chain can only contain a limited set of objects: lists, frames... (which code contain the Py_TRASHCAN_SAFE_BEGIN macro)... and the stack dumps suggests (subtype_dealloc) that it is also an instance of a user-defined class.  The only candidate I see is the class 'multiprocessing.managers.ProcessLocalSet', which inherits from 'set'.
History
Date User Action Args
2010-10-20 23:51:10amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, rthalley, jnoller
2010-10-20 23:51:10amaury.forgeotdarcsetmessageid: <1287618670.35.0.86611880515.issue10158@psf.upfronthosting.co.za>
2010-10-20 23:51:09amaury.forgeotdarclinkissue10158 messages
2010-10-20 23:51:08amaury.forgeotdarccreate