Win 7, x64, Python 2.7.12
In the following code I am setting off some pool processes to do a trivial multiplication via the multiprocessing.Pool.map() m
multiprocessing.Pool.map()
This question has nothing to do with multiprocessing or threadpooling. It is simply about how to unzip lists, which can be done with the standard zip(*...) idiom.
zip(*...)
myList_1, myList_2 = zip(*pool.map(createLists, splitBranches))