mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Revert 3k change to msilib, which is executed with Python 2.x.
This commit is contained in:
parent
d99fe9fea7
commit
fdb12a3fac
1 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ import win32com.client.gencache
|
|||
import win32com.client
|
||||
import pythoncom, pywintypes
|
||||
from win32com.client import constants
|
||||
import re, string, os, sets, glob, subprocess, sys, winreg, struct
|
||||
import re, string, os, sets, glob, subprocess, sys, _winreg, struct
|
||||
|
||||
try:
|
||||
basestring
|
||||
|
@ -387,9 +387,9 @@ class CAB:
|
|||
(r"Software\Microsoft\Win32SDK\Directories", "Install Dir"),
|
||||
]:
|
||||
try:
|
||||
key = winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, k)
|
||||
dir = winreg.QueryValueEx(key, v)[0]
|
||||
winreg.CloseKey(key)
|
||||
key = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, k)
|
||||
dir = _winreg.QueryValueEx(key, v)[0]
|
||||
_winreg.CloseKey(key)
|
||||
except (WindowsError, IndexError):
|
||||
continue
|
||||
cabarc = os.path.join(dir, r"Bin", "cabarc.exe")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue