In Python under Windows: I want to run some code in a separate process. And I don\'t want the parent waiting for it to end. Tried this:
from multiprocessing impo
You can always start a new thread, and call myNewThread.daemon(True) before invoking it's start() method.
That thread will continue to run when the main process exits.