[pywin32-checkins] pywin32/com/win32com/servers test_pycomtest.py, 1.12, 1.13
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-01-09 01:25:01
|
Update of /cvsroot/pywin32/pywin32/com/win32com/servers In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15938/com/win32com/servers Modified Files: 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.13 diff -C2 -d -r1.12 -r1.13 *** test_pycomtest.py 7 Feb 2007 23:12:31 -0000 1.12 --- test_pycomtest.py 9 Jan 2009 01:24:54 -0000 1.13 *************** *** 77,80 **** --- 77,83 ---- return len(ints) + def SetBinSafeArray(self, buf): + return len(buf) + def SetVarArgs(self, *args): raise COMException(hresult=winerror.E_NOTIMPL) |