Multiprocessing with Python
ibm.com
Multiprocessing with Python
1–4 of 4 posts
Re: Multiprocessing with Python
#2For those who want this functionality but use a version of Python older than 2.6, there is a backport of this module:
Re: Multiprocessing with Python
#3How does this relate/interoperate with stackless python?
http://www.stackless.com/
Re: Multiprocessing with Python
#4How does this relate/interoperate with stackless python? http://www.stackless.com/
It's doesn't matter. It can run with stackless/within it, and you can use tasklets. This was designed to step around the GIL, not get involved in the coroutine/tasklet/etc rats nest.