Update of /cvsroot/pywin32/pywin32/com/win32comext/axscript/client
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15702/com/win32comext/axscript/client
Modified Files:
framework.py
Log Message:
Convert hex constant to decimal to prevent warning.
Index: framework.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axscript/client/framework.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** framework.py 8 Nov 2003 00:43:46 -0000 1.19
--- framework.py 1 Feb 2004 22:24:20 -0000 1.20
***************
*** 17,21 ****
import types
! SCRIPTTEXT_FORCEEXECUTION = 0x80000000
SCRIPTTEXT_ISEXPRESSION = 0x00000020
SCRIPTTEXT_ISPERSISTENT = 0x00000040
--- 17,21 ----
import types
! SCRIPTTEXT_FORCEEXECUTION = -2147483648 # 0x80000000
SCRIPTTEXT_ISEXPRESSION = 0x00000020
SCRIPTTEXT_ISPERSISTENT = 0x00000040
|