[pywin32-checkins] pywin32/com/win32com __init__.py,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-07-02 03:43:45
|
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. |