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 Stan.Seibert, asksol, brandon-rhodes, catalin.iacob, christian.heimes, dholth, gregory.p.smith, jnoller, mrmekon, ned.deily, neologix, numbernine, pitrou, python-dev, rcoyner, sbt, vsekhar
Date 2013-08-15.18:07:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376590020.37.0.824321404189.issue8713@psf.upfronthosting.co.za>
In-reply-to
Content
Ok, I enabled faulthandler in the child process and I got the explanation:
http://buildbot.python.org/all/builders/AMD64%20Windows%20Server%202008%20%5BSB%5D%20custom/builds/5/steps/test/logs/stdio

multiprocessing's manager Server uses daemon threads... Daemon threads are not joined when the interpreter shuts down, they are simply "frozen" at some point. Unfortunately, it may happen that a deamon thread is "frozen" while it was doing a cyclic garbage collection, which later triggers the assert.

I'm gonna replace the assert by a plain "if", then.
History
Date User Action Args
2013-08-15 18:07:00pitrousetrecipients: + pitrou, gregory.p.smith, christian.heimes, ned.deily, jnoller, rcoyner, asksol, dholth, brandon-rhodes, neologix, catalin.iacob, python-dev, sbt, numbernine, vsekhar, mrmekon, Stan.Seibert
2013-08-15 18:07:00pitrousetmessageid: <1376590020.37.0.824321404189.issue8713@psf.upfronthosting.co.za>
2013-08-15 18:07:00pitroulinkissue8713 messages
2013-08-15 18:07:00pitroucreate