Describe function here.
def KillProcess(process): if not process: return try: process.kill() except: pass