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
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
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
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.
___