[ctypes-commit] ctypes/unittests test_slicing.py,1.4,1.5
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2005-02-16 13:17:53
|
Update of /cvsroot/ctypes/ctypes/unittests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20511 Modified Files: test_slicing.py Log Message: Fixes for cygwin. Index: test_slicing.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/unittests/test_slicing.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** test_slicing.py 14 Oct 2004 13:16:13 -0000 1.4 --- test_slicing.py 16 Feb 2005 13:17:42 -0000 1.5 *************** *** 70,73 **** --- 70,74 ---- dll = CDLL(find_test_dll()) dll.my_wcsdup.restype = POINTER(c_wchar) + dll.my_wcsdup.argtypes = POINTER(c_wchar), res = dll.my_wcsdup(s) self.failUnlessEqual(res[:len(s)], s) |