[ctypes-commit] ctypes/ctypes __init__.py,1.45,1.46
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2004-10-28 17:45:48
|
Update of /cvsroot/ctypes/ctypes/ctypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8120 Modified Files: __init__.py Log Message: Renamed get_string into string_at, and get_wstring into wstring_at. Index: __init__.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/__init__.py,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** __init__.py 27 Oct 2004 20:04:21 -0000 1.45 --- __init__.py 28 Oct 2004 17:45:37 -0000 1.46 *************** *** 247,251 **** raise TypeError, init ! from _ctypes import get_wstring POINTER(c_char).from_param = c_char_p.from_param #_SimpleCData.c_char_p_from_param --- 247,251 ---- raise TypeError, init ! from _ctypes import wstring_at POINTER(c_char).from_param = c_char_p.from_param #_SimpleCData.c_char_p_from_param *************** *** 380,382 **** # functions ! from _ctypes import memmove, memset, get_string, cast --- 380,382 ---- # functions ! from _ctypes import memmove, memset, string_at, cast |