[pywin32-checkins] pywin32/Pythonwin win32thread.cpp,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-02-15 02:12:56
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10272 Modified Files: win32thread.cpp Log Message: Add a skipLookup and an Autoduck fix Index: win32thread.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32thread.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** win32thread.cpp 5 Mar 2005 03:16:34 -0000 1.7 --- win32thread.cpp 15 Feb 2008 02:12:59 -0000 1.8 *************** *** 191,195 **** } ! // @pymethod win32ui|win32ui|CreateThread|Creates a new <o PyCWinThread> object PyObject *PyCWinThread::create(PyObject *self, PyObject *args) { --- 191,195 ---- } ! // @pymethod <o PyCWinThread>|win32ui|CreateThread|Creates a new <o PyCWinThread> object PyObject *PyCWinThread::create(PyObject *self, PyObject *args) { *************** *** 214,218 **** return NULL; } ! return ui_assoc_object::make( PyCWinThread::type, pThread ); } --- 214,218 ---- return NULL; } ! return ui_assoc_object::make( PyCWinThread::type, pThread, TRUE); } |