I was wondering , if there is a way to find out which process among the Pool has executed a particular job submitted.
For example , def start_exe(): ##Does some task ### if __name__ == '__main__': p = Pool(5) result = p.apply_async(start_exe) print result.get() how do i find out , which worker process from the Pool has executed the job. Regards, Rahul _______________________________________________ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers