[pywin32-checkins] pywin32/com/win32com/src/extensions PyIEnumFORMATETC.cpp,1.1,1.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-23 02:50:29
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src/extensions In directory sc8-pr-cvs1:/tmp/cvs-serv25500/extensions Modified Files: PyIEnumFORMATETC.cpp Log Message: Don't ask subclasses to provide iter() - we manage that. Index: PyIEnumFORMATETC.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/extensions/PyIEnumFORMATETC.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PyIEnumFORMATETC.cpp 8 Oct 2003 04:28:42 -0000 1.1 --- PyIEnumFORMATETC.cpp 23 Oct 2003 02:44:12 -0000 1.2 *************** *** 30,39 **** } - PyObject * - PyIEnumFORMATETC::iter() - { - Py_INCREF(this); - return this; - } PyObject * --- 30,33 ---- |