Merlijn van Deen <valhall...@gmail.com> added the comment:

Two questions:
(1) can this be at least be added as a big fat warning in the documentation?
(2) would it be a reasonable option to let either
  (a) the creation of a Pool
  (b) executing something using the Pool
cause an exception when it happens during the import of the function to run?

I think it makes sense to prevent any accidental forkbombs, especially if they 
are /this/ easy to create. Untested (for obvious reasons...), but this should 
be enough:

import multiprocessing
def x(val):
   return val
multiprocessing.Pool().map(x, range(10))

----------
nosy: +valhallasw

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue6147>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to