[pywin32-checkins] pywin32/com/win32com/servers test_pycomtest.py,1.9,1.10
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-06-27 11:02:50
|
Update of /cvsroot/pywin32/pywin32/com/win32com/servers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9704/win32com/servers Modified Files: test_pycomtest.py Log Message: Fix [ 1203980 ] Universal Gateway mishandles ByRef Variant arguments Index: test_pycomtest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/servers/test_pycomtest.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** test_pycomtest.py 8 Jun 2005 05:19:04 -0000 1.9 --- test_pycomtest.py 27 Jun 2005 11:02:41 -0000 1.10 *************** *** 48,51 **** --- 48,60 ---- return wrap(self) + def GetSetVariant(self, indisp): + return indisp + + def TestByRefVariant(self, v): + return v * 2 + + def TestByRefString(self, v): + return v * 2 + # Result is of type IPyCOMTest def GetSetInterfaceArray(self, ininterface): |