[ctypes-commit] ctypes/ctypes __init__.py,1.54,1.55
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2005-03-07 09:26:22
|
Update of /cvsroot/ctypes/ctypes/ctypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4061 Modified Files: __init__.py Log Message: WINFUNCTYPE no longer accepts the third argument which creates an unbound method. It's more flexible to explicitely call new.instancemethod to create one. Index: __init__.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/__init__.py,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** __init__.py 16 Feb 2005 13:17:15 -0000 1.54 --- __init__.py 7 Mar 2005 09:26:12 -0000 1.55 *************** *** 77,81 **** prototype(vtbl_index, method_name) - a function that calls a COM method - prototype(vtbl_index, method_name, class) - an unbound method that calls a COM method prototype(callable) - returns a C callable function that calls callable prototype(funct_name, dll) - a function that calls an exported function in a dll --- 77,80 ---- *************** *** 108,112 **** prototype(vtbl_index, method_name) - a function that calls a COM method - prototype(vtbl_index, method_name, class) - an unbound method that calls a COM method prototype(callable) - returns a C callable function that calls callable prototype(funct_name, dll) - a function that calls an exported function in a dll --- 107,110 ---- |