[ctypes-commit] ctypes/ctypes/test test_slicing.py,1.1.2.2,1.1.2.3
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-01-27 18:24:26
|
Update of /cvsroot/ctypes/ctypes/ctypes/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8983 Modified Files: Tag: branch_1_0 test_slicing.py Log Message: *** empty log message *** Index: test_slicing.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/test/Attic/test_slicing.py,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** test_slicing.py 27 Jan 2006 18:18:54 -0000 1.1.2.2 --- test_slicing.py 27 Jan 2006 18:24:18 -0000 1.1.2.3 *************** *** 38,42 **** s = "abcdefghijklmnopqrstuvwxyz\0" ! dll = CDLL(find_test_dll()) dll.my_strdup.restype = POINTER(c_char) res = dll.my_strdup(s) --- 38,42 ---- s = "abcdefghijklmnopqrstuvwxyz\0" ! dll = cdll.load(_ctypes_test.__file__) dll.my_strdup.restype = POINTER(c_char) res = dll.my_strdup(s) |