in a python 3.4 script, I've opened a process this way:
myProcess = subprocess.Popen([sys.executable, pythonprocess.py, args], shell=False)
How can I kill this process?
in a python 3.4 script, I've opened a process this way:
myProcess = subprocess.Popen([sys.executable, pythonprocess.py, args], shell=False)
How can I kill this process?