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 db3l
Recipients Ringding, aimacintyre, ajaksu2, akuchling, bboissin, belopolsky, blaisorblade, christian.heimes, collinwinter, db3l, djc, facundobatista, ggenellina, gregory.p.smith, jab, jcea, jyasskin, kevinwatters, lemburg, mdionisio, ned.deily, parasa, pitrou, python-dev, ralph.corderoy, rbcollins, rhettinger, spiv, theatrus, willp
Date 2015-06-01.22:02:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433196154.65.0.836276777262.issue4753@psf.upfronthosting.co.za>
In-reply-to
Content
The 2.7 back-ported version of this patch appears to have broken compilation on the Windows XP buildbot, during the OpenSSL build process, when the newly built Python is used to execute the build_ssl.py script.

After this patch, when that stage executes, and prior to any output from the build script, the python_d process goes to 100% CPU and sticks there until the build process times out 1200s later and kills it.

I don't think it's really ssl related though, as after doing some debugging the exact same thing happens if I simply run python_d (I never see a prompt - it just sits there burning CPU).  So I think build_ssl.py is just the first use of the generated python_d during the build process.

I did try attaching to the CPU-stuck version of python_d from VS, and so far from what I can see, the process never gets past the Py_Initialize() call in Py_Main().  It's all over the place in terms of locations if I try interrupting it, but it's always stuck inside that first Py_Initialize call.

I'm not sure if it's something environmental on my slave, or a difference with a debug vs. production build (I haven't had a chance to try building a release version yet).

-- David
History
Date User Action Args
2015-06-01 22:02:35db3lsetrecipients: + db3l, lemburg, akuchling, collinwinter, rhettinger, facundobatista, gregory.p.smith, jcea, spiv, aimacintyre, belopolsky, ggenellina, pitrou, christian.heimes, ajaksu2, jyasskin, rbcollins, kevinwatters, ned.deily, djc, ralph.corderoy, bboissin, blaisorblade, theatrus, Ringding, jab, mdionisio, willp, python-dev, parasa
2015-06-01 22:02:34db3lsetmessageid: <1433196154.65.0.836276777262.issue4753@psf.upfronthosting.co.za>
2015-06-01 22:02:34db3llinkissue4753 messages
2015-06-01 22:02:34db3lcreate