Update of /cvsroot/pywin32/pywin32/win32/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18414
Modified Files:
win32con.py
Log Message:
As found by Thomas Heller, "PY_0U" should be zero. This affects the
CDN_ constants.
Index: win32con.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32con.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** win32con.py 24 Apr 2004 00:54:19 -0000 1.5
--- win32con.py 6 Sep 2004 23:52:42 -0000 1.6
***************
*** 2,6 ****
WINVER = 1280
WM_USER = 1024
! PY_0U = 5177344
OFN_READONLY = 1
OFN_OVERWRITEPROMPT = 2
--- 2,6 ----
WINVER = 1280
WM_USER = 1024
! PY_0U = 0
OFN_READONLY = 1
OFN_OVERWRITEPROMPT = 2
|