[issue11969] Can't launch multiproccessing.Process on methods

R. David Murray report at bugs.python.org
Fri May 27 18:31:07 CEST 2011


R. David Murray <rdmurray at bitdance.com> added the comment:

REPL is the Python interactive prompt in this case (REPL is Read Eval Print Loop).  So Jesse is saying that using multiprocessing from the REPL (at least on Windows) isn't supported.  This is because on Windows multiprocessing needs to re-import the main program in order to start the function in a worker process.  When using the REPL, there is no main program from which to import the function.

The test case failing on windows may or may not be a related issue; I'm not familiar enough with mulitprocessing to say.

----------
nosy: +r.david.murray

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue11969>
_______________________________________


More information about the Python-bugs-list mailing list