[issue5035] Compilation --without-threads fails

2010-03-22 Thread STINNER Victor
STINNER Victor added the comment: _tkinter patch (r70641) was backported to py3k as r70707. py3k compiles fine without threads. -- resolution: -> fixed status: open -> closed ___ Python tracker __

[issue5035] Compilation --without-threads fails

2009-03-27 Thread STINNER Victor
STINNER Victor added the comment: gpolo> Victor, I have changed your tkinter patch a bit and applied on r70641. Ok, thanks. gpolo> The issue is marking only python 2.7 right now, aren't these changes gpolo> supposed to be applied 26-maint, py3k and 30-maint too ? Since it only fixes warnings,

[issue5035] Compilation --without-threads fails

2009-03-27 Thread Guilherme Polo
Guilherme Polo added the comment: Victor, I have changed your tkinter patch a bit and applied on r70641. The issue is marking only python 2.7 right now, aren't these changes supposed to be applied 26-maint, py3k and 30-maint too ? -- ___ Python trac

[issue5035] Compilation --without-threads fails

2009-03-27 Thread Guilherme Polo
Changes by Guilherme Polo : -- nosy: +gpolo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue5035] Compilation --without-threads fails

2009-03-26 Thread STINNER Victor
STINNER Victor added the comment: New patch _tkinter_nothread.patch: fix gcc warnings in _tkinter. -- Added file: http://bugs.python.org/file13432/_tkinter_nothread.patch ___ Python tracker

[issue5035] Compilation --without-threads fails

2009-03-26 Thread STINNER Victor
STINNER Victor added the comment: Updated and completed patch for _sqlite module (python trunk). -- Added file: http://bugs.python.org/file13431/_sqlite_nothread-2.patch ___ Python tracker _

[issue5035] Compilation --without-threads fails

2009-03-26 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file12839/_sqlite_nothread.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue5035] Compilation --without-threads fails

2009-03-26 Thread STINNER Victor
STINNER Victor added the comment: Python trunk is still broken --without-threads. The multiprocessing issue (#3807) is now closed, so can someone review (or apply?) my patches? -- ___ Python tracker _

[issue5035] Compilation --without-threads fails

2009-01-23 Thread Jesse Noller
Jesse Noller added the comment: I've committed the fix for issue 3807 to resolve the mp issues. ___ Python tracker ___ ___ Python-bugs-list mai

[issue5035] Compilation --without-threads fails

2009-01-23 Thread STINNER Victor
STINNER Victor added the comment: @pitou and @jnoller: Ok ok, fine, I will check #3807. ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue5035] Compilation --without-threads fails

2009-01-23 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file12840/_multiprocessing_remove_save.patch ___ Python tracker ___ ___ Pytho

[issue5035] Compilation --without-threads fails

2009-01-23 Thread Jesse Noller
Jesse Noller added the comment: Victor - there is already another bug and a pending patchbto fix multiprocessing when thread support is enabled. Please do not focus on that. ___ Python tracker __

[issue5035] Compilation --without-threads fails

2009-01-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: There is already a separate issue for multiprocessing compilation: #3807 ___ Python tracker ___ ___ Python-bu

[issue5035] Compilation --without-threads fails

2009-01-23 Thread STINNER Victor
STINNER Victor added the comment: Here is a patch to remove the unused _save argument of conn_poll() function from the _multiprocessing mode. It fixes one of the compilation problem without thread support. Added file: http://bugs.python.org/file12840/_multiprocessing_remove_save.patch

[issue5035] Compilation --without-threads fails

2009-01-23 Thread STINNER Victor
STINNER Victor added the comment: _multiprocessing modules doesn't compile but I don't know how to fix it: - conn_poll() has a _save argument, but the argument is not used in both conn_poll() implementations (pipe_connection.c and socket_connection.c) - Modules/_multiprocessing/semaphore.c con

[issue5035] Compilation --without-threads fails

2009-01-23 Thread STINNER Victor
STINNER Victor added the comment: Another patch to fix _sqlite without thread support. Added file: http://bugs.python.org/file12839/_sqlite_nothread.patch ___ Python tracker ___

[issue5035] Compilation --without-threads fails

2009-01-23 Thread STINNER Victor
STINNER Victor added the comment: Why is PyGILState_Ensure() defined in Include/pystate.h in there is not thread? PyGILState_Ensure() implementation is conditional (in Python/pystate.c). Here is a patch to make the definition optional. Added file: http://bugs.python.org/file12838/gil_nothread.p

[issue5035] Compilation --without-threads fails

2009-01-23 Thread STINNER Victor
STINNER Victor added the comment: Oops, here is a fix for my regression. -- keywords: +patch Added file: http://bugs.python.org/file12837/object_dump_nothread.patch ___ Python tracker __

[issue5035] Compilation --without-threads fails

2009-01-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: The problem seems to have appeared with: [svn r67802] #3632: the "pyo" macro from gdbinit can now run when the GIL is released. Patch by haypo. diff -r 68d511e1c4bc -r 584e97b40be9 Objects/object.c --- a/Objects/object.c Mon Dec 15 22:47:57 2008 +0100 +++ b

[issue5035] Compilation --without-threads fails

2009-01-22 Thread Antoine Pitrou
New submission from Antoine Pitrou : libpython2.7.a(object.o): In function `_PyObject_Dump': /home/antoine/cpython/__svn__/Objects/object.c:341: undefined reference to `PyGILState_Ensure' /home/antoine/cpython/__svn__/Objects/object.c:343: undefined reference to `PyGILState_Release' -- m