Multiprocessing with Pythonibm.com 36 pointsjaspertheghost17 years ago3 commentsSaveHideCopy link On HNComments−artificer17yFor those who want this functionality but use a version of Python older than 2.6, there is a backport of this module:http://code.google.com/p/python-multiprocessing/−hendler17yHow does this relate/interoperate with stackless python? http://www.stackless.com/−jnoller17yIt'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.
Comments
For those who want this functionality but use a version of Python older than 2.6, there is a backport of this module:
http://code.google.com/p/python-multiprocessing/
How 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.