[issue24784] Build fails with --with-pydebug and --without-threads

2015-10-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3ab4f23ab983 by Victor Stinner in branch 'default': Close #24784: Fix compilation without thread support https://hg.python.org/cpython/rev/3ab4f23ab983 -- resolution: -> fixed stage: -> resolved status: open -> closed

[issue24784] Build fails with --with-pydebug and --without-threads

2015-10-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 20ef719b1cb9 by Victor Stinner in branch '3.5': Close #24784: Fix compilation without thread support https://hg.python.org/cpython/rev/20ef719b1cb9 -- ___ Python tracker

[issue24784] Build fails with --with-pydebug and --without-threads

2015-10-11 Thread STINNER Victor
STINNER Victor added the comment: It's now fixed, thanks. -- ___ Python tracker ___ ___ Python-bugs-list

[issue24784] Build fails with --with-pydebug and --without-threads

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Calls to PyGILState_Check() in Python/fileutils.c were introduced in revisions 0b99d7043a99 and cfe541c694f3. Call to PyGILState_Check() in Modules/socketmodule.c was introduced in revision 75fcc7a3738a. -- assignee: -> haypo

[issue24784] Build fails with --with-pydebug and --without-threads

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- keywords: +3.5regression nosy: +Arfrever title: Build fails --without-threads -> Build fails with --with-pydebug and --without-threads versions: +Python 3.5 ___ Python

[issue24784] Build fails with --with-pydebug and --without-threads

2015-10-10 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: > Call to PyGILState_Check() in Modules/socketmodule.c was introduced in > revision 75fcc7a3738a. Actually that call was moved from another place. -- ___ Python tracker