[issue24728] Build fails when threads are disabled

2015-07-27 Thread Berker Peksag
Berker Peksag added the comment: Thanks Louis. If you are going to continue contributing patches, please sign the PSF Contribution Agreement: https://www.python.org/psf/contrib/contrib-form/ -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed __

[issue24728] Build fails when threads are disabled

2015-07-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset d10f7e0cd059 by Berker Peksag in branch '3.4': Issue #24728: Fix building without threads. https://hg.python.org/cpython/rev/d10f7e0cd059 New changeset 401bb7ceb7e8 by Berker Peksag in branch '3.5': Issue #24728: Null merge https://hg.python.org/cpy

[issue24728] Build fails when threads are disabled

2015-07-26 Thread Louis Dassy
New submission from Louis Dassy: If threads are disabled using --without-threads, the build of Python/pythonrun.c will fail because PyGILState_GetThisThreadState() is undefined. I've attached the trivial fix, modeled after 29f51c4ae11a. -- components: Interpreter Core files: without_t