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.
_______________________________________________
Stackless mailing list
[email protected]
http://www.stackless.com/mailman/listinfo/stackless

Reply via email to