Edit: I had deleted the below, but J.F. Sebastian indicated that partial works in this instance in Python >=2.7, so I am undeleting, with the caveat that it won't work in 2.6.
First of all, in the above code, you're passing the result of harvester(text, case) instead of the function harvester itself. Also, you aren't returning anything; you'll have to return something in order for this to be useful. But to answer your question, you might be able to use partial from functools.
I'm assuming that text is the variable that should be mapped, while case supplies the mapping function with extra information about the whole sequence. This simply maps each element in case to case[i] + case[0]. That's a bit different from what you did, but I find this example clearer:
from functools import partial
def harvester(text, case):
X = case[0]
return text + str(X)
partial_harvester = partial(harvester, case=RAW_DATASET)
if __name__ == '__main__':
pool = multiprocessing.Pool(processes=6)
case_data = RAW_DATASET
pool.map(partial_harvester, case_data, 1)
pool.close()
pool.join()
partialnorlambdado this. I think it has to do with the strange way that functions are passed to the subprocesses (viapickle). – senderle Mar 26 '11 at 15:27