diff options
author | Thomas Heller <theller@ctypes.org> | 2006-08-01 17:46:10 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-08-01 17:46:10 (GMT) |
commit | 11d68a6ac4aff428a1b680344962bfb444069453 (patch) | |
tree | 28ad43b0550d341a89668710b3c8f84b0d1803c5 /Modules | |
parent | 3de83e9b619e4f5d61772e5d7377819ac12bc136 (diff) | |
download | cpython-11d68a6ac4aff428a1b680344962bfb444069453.zip cpython-11d68a6ac4aff428a1b680344962bfb444069453.tar.gz cpython-11d68a6ac4aff428a1b680344962bfb444069453.tar.bz2 |
Minimal useful docstring for CopyComPointer.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ctypes/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index a57eecb..d6f875b 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -1160,7 +1160,7 @@ call_commethod(PyObject *self, PyObject *args) } static char copy_com_pointer_doc[] = -"CopyComPointer(a, b) -> integer\n"; +"CopyComPointer(src, dst) -> HRESULT value\n"; static PyObject * copy_com_pointer(PyObject *self, PyObject *args) |