Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Out of curiosity and trying to understand the subprocess module: Is it possible to do something like:

import subprocess

def myfun(arg):
    # do stuff

arg = something;
p = subprocess.Popen(["myfun","arg"])

without putting "myfun" in a file of its own? It seems like this would in general be a scary thing to do if you are not careful about cleaning up child processes.

share|improve this question

1 Answer

up vote 4 down vote accepted

You can pass Popen a preexec_fn, which is a callable object executed in the child process before the command is exec'd. A more standard approach is to use the multiprocessing module, which requires a Python function instead of an external command.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.