Import ctypes.wintypes explicitly to avoid a python exception when child processes get hung.

This commit is contained in:
Benjamin Smedberg 2010-01-08 15:52:37 -05:00
Родитель d694b37e81
Коммит 58f74dd625
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -455,7 +455,7 @@ def environment(env = None, xrePath = DIST_BIN, crashreporter = True):
return env
if IS_WIN32:
import ctypes, time, msvcrt
import ctypes, ctypes.wintypes, time, msvcrt
PeekNamedPipe = ctypes.windll.kernel32.PeekNamedPipe
GetLastError = ctypes.windll.kernel32.GetLastError