[pywin32-checkins] pywin32/win32/Lib winerror.py,1.5,1.6
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-04-15 21:51:39
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv584 Modified Files: winerror.py Log Message: Remove L from S_OK and S_FALSE values Index: winerror.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/winerror.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** winerror.py 20 Jul 2007 02:00:49 -0000 1.5 --- winerror.py 15 Apr 2008 21:51:40 -0000 1.6 *************** *** 57,62 **** ERROR_SUCCESS = 0 NO_ERROR = 0 ! S_OK = (0L) ! S_FALSE = (1L) ERROR_INVALID_FUNCTION = 1 ERROR_FILE_NOT_FOUND = 2 --- 57,62 ---- ERROR_SUCCESS = 0 NO_ERROR = 0 ! S_OK = 0 ! S_FALSE = 1 ERROR_INVALID_FUNCTION = 1 ERROR_FILE_NOT_FOUND = 2 |