_py/... with py/__init__.py containing pointers into them The new apipkg is only around 70 lines of code and allows us to get rid of the infamous "py.__." by regular non-magical "_py." imports. It is also available as a separately installable package, see http://bitbucket.org/hpk42/apipkg --HG-- branch : trunk
24 lines
618 B
Python
24 lines
618 B
Python
import py
|
|
import os, sys
|
|
|
|
if sys.platform == "win32":
|
|
try:
|
|
import ctypes
|
|
except ImportError:
|
|
def dokill(pid):
|
|
py.process.cmdexec("taskkill /F /PID %d" %(pid,))
|
|
else:
|
|
def dokill(pid):
|
|
PROCESS_TERMINATE = 1
|
|
handle = ctypes.windll.kernel32.OpenProcess(
|
|
PROCESS_TERMINATE, False, pid)
|
|
ctypes.windll.kernel32.TerminateProcess(handle, -1)
|
|
ctypes.windll.kernel32.CloseHandle(handle)
|
|
else:
|
|
def dokill(pid):
|
|
os.kill(pid, 15)
|
|
|
|
def kill(pid):
|
|
""" kill process by id. """
|
|
dokill(pid)
|