From: Thomas Heller Date: Wed, 2 Aug 2006 12:00:13 +0000 (+0000) Subject: Fix a mistake. X-Git-Tag: v2.5b3~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9;p=thirdparty%2FPython%2Fcpython.git Fix a mistake. --- diff --git a/Doc/lib/libctypes.tex b/Doc/lib/libctypes.tex index 45773585ceac..6206b8c1707e 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):