How do i kill a process in windows (xp 32 bits) in python 2.5? Someone on stackoverlow posted on how to import ctypes and do it but I don't have a ctypes module.
I am running the process in the following way-
ex=Execution(cmd)
#do something
ex.proc.kill()
This gives me an error saying Popen object has no attribute kill. Using os.kill(ex.pid, signal.SIGKILL) gives a similar error.