I am subclassing the Process class, into a class I call EdgeRenderer. I want to use multiprocessing.Pool, except instead of regular Processes, I want them to be instances of my EdgeRenderer. Possible? How?
|
1
|
|
||||
|
|
|
I don't see any hook for it in the API. You might be able to get away with replicating your desired functionality by using
|
||
|
|
|
|
From Jesse Noller:
|
||
|
|
