diff options
author | Thomas Heller <theller@ctypes.org> | 2006-06-14 06:18:15 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-06-14 06:18:15 (GMT) |
commit | 866a5d89b29903735379fe778c1a08ef3314ba78 (patch) | |
tree | 32f5751291edfec2202c5b31b023dfa8a7403be6 /Lib/ctypes | |
parent | 2605ca8773ebf37c840c191a903f168942521aa8 (diff) | |
download | cpython-866a5d89b29903735379fe778c1a08ef3314ba78.zip cpython-866a5d89b29903735379fe778c1a08ef3314ba78.tar.gz cpython-866a5d89b29903735379fe778c1a08ef3314ba78.tar.bz2 |
Fix docstring.
Diffstat (limited to 'Lib/ctypes')
-rw-r--r-- | Lib/ctypes/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py index eb47532..083d0f1 100644 --- a/Lib/ctypes/__init__.py +++ b/Lib/ctypes/__init__.py @@ -69,7 +69,7 @@ def CFUNCTYPE(restype, *argtypes): restype: the result type argtypes: a sequence specifying the argument types - The function prototype can be called in three ways to create a + The function prototype can be called in different ways to create a callable object: prototype(integer address) -> foreign function |