[pywin32-checkins] pywin32/com/win32com/servers dictionary.py, 1.3.4.2, 1.3.4.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-04 07:32:10
|
Update of /cvsroot/pywin32/pywin32/com/win32com/servers In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4678/com/win32com/servers Modified Files: Tag: py3k dictionary.py Log Message: many more py3k syntax improvements thanks to 2to3 Index: dictionary.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/servers/dictionary.py,v retrieving revision 1.3.4.2 retrieving revision 1.3.4.3 diff -C2 -d -r1.3.4.2 -r1.3.4.3 *** dictionary.py 4 Dec 2008 05:08:41 -0000 1.3.4.2 --- dictionary.py 4 Dec 2008 07:32:05 -0000 1.3.4.3 *************** *** 108,112 **** if dispid == pythoncom.DISPID_NEWENUM: ! return util.NewEnum(self._obj_.keys()) raise COMException(scode=winerror.DISP_E_MEMBERNOTFOUND) --- 108,112 ---- if dispid == pythoncom.DISPID_NEWENUM: ! return util.NewEnum(list(self._obj_.keys())) raise COMException(scode=winerror.DISP_E_MEMBERNOTFOUND) |