Update of /cvsroot/pywin32/pywin32/com/win32com
In directory sc8-pr-cvs1:/tmp/cvs-serv18674
Modified Files:
__init__.py
Log Message:
hex constants -> decimal
Index: __init__.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/__init__.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** __init__.py 1 Mar 2003 00:22:06 -0000 1.2
--- __init__.py 2 Jul 2003 03:43:42 -0000 1.3
***************
*** 18,22 ****
def SetupEnvironment():
! HKEY_LOCAL_MACHINE = 0x80000002 # Avoid pulling in win32con for just these...
KEY_QUERY_VALUE = 0x1
# Open the root key once, as this is quite slow on NT.
--- 18,22 ----
def SetupEnvironment():
! HKEY_LOCAL_MACHINE = -2147483646 # Avoid pulling in win32con for just these...
KEY_QUERY_VALUE = 0x1
# Open the root key once, as this is quite slow on NT.
|