remove trailing whitespace everywhere

--HG--
branch : trunk
This commit is contained in:
holger krekel
2010-07-26 21:15:15 +02:00
parent 1693b9c407
commit 677f7c0a6a
219 changed files with 4400 additions and 4398 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ if sys.platform == "win32" or getattr(os, '_name', '') == 'nt':
except ImportError:
def dokill(pid):
py.process.cmdexec("taskkill /F /PID %d" %(pid,))
else:
else:
def dokill(pid):
PROCESS_TERMINATE = 1
handle = ctypes.windll.kernel32.OpenProcess(
@@ -16,7 +16,7 @@ if sys.platform == "win32" or getattr(os, '_name', '') == 'nt':
ctypes.windll.kernel32.CloseHandle(handle)
else:
def dokill(pid):
os.kill(pid, 15)
os.kill(pid, 15)
def kill(pid):
""" kill process by id. """