I have a very simple script which is the following:
import multiprocessing as multi def call_other_thing_with_multi(): P = multi.Pool(3) P.map(other_thing, range(0,5)) P.join() def other_thing(arg): print(arg) return arg**2. call_other_thing_with_multi() When I call this, my code hangs at perpetuity. This is on windows with python 2.7.
Thanks for any guidance!