I've see many posts where ctrl-c supposedly kills a subprocess.
However I have the opposite problem. In my code I have following line:
p = subprocess.Popen(["python3", script_file])
Now when I type ctrl-C randomly in Python console, this subprocess will exit. I dont't want this to happen. Is there a way to make sure it doesn't happen?