Re: [Python-Dev] python running in several threads

2005-06-15 Thread Martin Aliger
Thanks both for answers, I read some articles you link and I'd to say - alot discussion around! I also found some notes that mod_python use some technique other than GIL to allow multi-threading in Apache 2.0. Does someone know anything closer? Any links or so? Sorry I raise this old stuff

[Python-Dev] python running in several threads

2005-06-07 Thread Martin Aliger
Hello Python developers, I know this is developers list and I hope I'm right here. I'm using python as scripting engine embedded in application but issue should be more general. When several scripts are executed simultaneously (under several threads) one have to acquire/release locks. This

Re: [Python-Dev] python running in several threads

2005-06-07 Thread Aahz
On Tue, Jun 07, 2005, Martin Aliger wrote: Under those limitations, do you think, an easy rewrite of execution engine is possible to allow simultaneous run of all threads? Short answer: no Longer answer: see previous threads about removing the GIL; if you still have questions, please post to

Re: [Python-Dev] python running in several threads

2005-06-07 Thread Martin v. Löwis
Aahz wrote: Under those limitations, do you think, an easy rewrite of execution engine is possible to allow simultaneous run of all threads? Short answer: no Longer answer: see previous threads about removing the GIL; if you still have questions, please post to comp.lang.python. Or, as a