Re: [Stackless] Stackless python coredump when using multiple threading

2012-01-02 Thread Richard Tew
On Thu, Mar 10, 2011 at 10:38 PM, Wentao Lv wrote: > Stackless Python 2.5.2, I download it from official site. > > Yeah, I see the sample in stackless python manual, I just want to report > this bug. :) Following this up, it appears to be fixed in 2.7.2. I expect it to be the "kill all threads o

Re: [Stackless] Stackless python coredump when using multiple threading

2011-03-10 Thread Wentao Lv
Stackless Python 2.5.2, I download it from official site. Yeah, I see the sample in stackless python manual, I just want to report this bug. :) Best Regards. Lv Wentao. 2011/3/10 Richard Tew > On Thu, Mar 10, 2011 at 1:43 PM, Wentao Lv wrote: > >> Following code will always cause stackless py

Re: [Stackless] Stackless python coredump when using multiple threading

2011-03-09 Thread Richard Tew
On Thu, Mar 10, 2011 at 1:43 PM, Wentao Lv wrote: > Following code will always cause stackless python coredump, is this a known > bug? > > No, thank you for reporting it. But it would be useful if you also reported where you got your Stackless Python implementation from (which you reproduced it

[Stackless] Stackless python coredump when using multiple threading

2011-03-09 Thread Wentao Lv
Hi, Following code will always cause stackless python coredump, is this a known bug? import stackless import threading def test(): def subtest(): pass stackless.tasklet(subtest)() t = threading.Thread(target=test) t.start() stackless.run() Best Regards. Lv Wentao. ___