##// END OF EJS Templates
win32: close the handles associated with a spawned child process...
Matt Harbison -
r40964:576474ba default
parent child Browse files
Show More
@@ -588,6 +588,9 b' def spawndetached(args):'
588 588 if not res:
589 589 raise ctypes.WinError()
590 590
591 _kernel32.CloseHandle(pi.hProcess)
592 _kernel32.CloseHandle(pi.hThread)
593
591 594 return pi.dwProcessId
592 595
593 596 def unlink(f):
General Comments 0
You need to be logged in to leave comments. Login now