[ctypes-commit] ctypes/ctypes __init__.py,1.61.2.26,1.61.2.27
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-01-27 17:57:57
|
Update of /cvsroot/ctypes/ctypes/ctypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28359 Modified Files: Tag: branch_1_0 __init__.py Log Message: Add deprecated markers. Index: __init__.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/__init__.py,v retrieving revision 1.61.2.26 retrieving revision 1.61.2.27 diff -C2 -d -r1.61.2.26 -r1.61.2.27 *** __init__.py 26 Jan 2006 20:23:16 -0000 1.61.2.26 --- __init__.py 27 Jan 2006 17:57:50 -0000 1.61.2.27 *************** *** 257,260 **** --- 257,261 ---- POINTER(c_char).from_param = c_char_p.from_param #_SimpleCData.c_char_p_from_param + # XXX Deprecated def SetPointerType(pointer, cls): if _pointer_type_cache.get(cls, None) is not None: *************** *** 272,275 **** --- 273,277 ---- return POINTER(type(inst))(inst) + # XXX Deprecated def ARRAY(typ, len): return typ * len |