[pywin32-checkins] pywin32/win32/src PyWinTypesmodule.cpp, 1.39.2.7, 1.39.2.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-10-11 18:43:47
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15225 Modified Files: Tag: py3k PyWinTypesmodule.cpp Log Message: Remove direct reference to PyTime Index: PyWinTypesmodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/PyWinTypesmodule.cpp,v retrieving revision 1.39.2.7 retrieving revision 1.39.2.8 diff -C2 -d -r1.39.2.7 -r1.39.2.8 *** PyWinTypesmodule.cpp 7 Oct 2008 11:35:36 -0000 1.39.2.7 --- PyWinTypesmodule.cpp 11 Oct 2008 18:43:40 -0000 1.39.2.8 *************** *** 429,433 **** if (!DosDateTimeToFileTime(wFatDate, wFatTime, &fd)) return PyWin_SetAPIError("DosDateTimeToFileTime"); ! return new PyTime(fd); } #endif /* MS_WINCE */ --- 429,433 ---- if (!DosDateTimeToFileTime(wFatDate, wFatTime, &fd)) return PyWin_SetAPIError("DosDateTimeToFileTime"); ! return PyWinObject_FromFILETIME(fd); } #endif /* MS_WINCE */ |