diff options
author | Thomas Heller <theller@ctypes.org> | 2006-08-02 12:00:13 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-08-02 12:00:13 (GMT) |
commit | 5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9 (patch) | |
tree | ce273ec0a8d114cb0a8ecb2727f144a477737a30 /Doc | |
parent | 6a0ce407fb31390a77f53835f9cae70653f897ef (diff) | |
download | cpython-5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9.zip cpython-5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9.tar.gz cpython-5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9.tar.bz2 |
Fix a mistake.
Diffstat (limited to 'Doc')
-rwxr-xr-x | Doc/lib/libctypes.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libctypes.tex b/Doc/lib/libctypes.tex index 4577358..6206b8c 100755 --- a/Doc/lib/libctypes.tex +++ b/Doc/lib/libctypes.tex @@ -151,9 +151,9 @@ be used as the NULL pointer): \code{ctypes} tries to protect you from calling functions with the wrong number of arguments or the wrong calling convention. Unfortunately -this only works on Windows, for \code{stdcall} functions. It does this -by examining the stack after the function returns, so although an -error is raised the function \emph{has} been called: +this only works on Windows. It does this by examining the stack after +the function returns, so although an error is raised the function +\emph{has} been called: \begin{verbatim} >>> windll.kernel32.GetModuleHandleA() # doctest: +WINDOWS Traceback (most recent call last): |