Update of /cvsroot/pywin32/pywin32/com/win32com/servers
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv16048/com/win32com/servers
Modified Files:
Tag: py3k
test_pycomtest.py
Log Message:
Explicit tests for VT_UI1 safe arrays being passed buffers and integers
Index: test_pycomtest.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/servers/test_pycomtest.py,v
retrieving revision 1.12
retrieving revision 1.12.2.1
diff -C2 -d -r1.12 -r1.12.2.1
*** test_pycomtest.py 7 Feb 2007 23:12:31 -0000 1.12
--- test_pycomtest.py 9 Jan 2009 01:26:19 -0000 1.12.2.1
***************
*** 77,80 ****
--- 77,83 ----
return len(ints)
+ def SetBinSafeArray(self, buf):
+ return len(buf)
+
def SetVarArgs(self, *args):
raise COMException(hresult=winerror.E_NOTIMPL)
|