[Python-checkins] r51045 - python/trunk/Doc/lib/libctypes.tex

thomas.heller python-checkins at python.org
Wed Aug 2 14:00:15 CEST 2006


Author: thomas.heller
Date: Wed Aug  2 14:00:13 2006
New Revision: 51045

Modified:
   python/trunk/Doc/lib/libctypes.tex
Log:
Fix a mistake.

Modified: python/trunk/Doc/lib/libctypes.tex
==============================================================================
--- python/trunk/Doc/lib/libctypes.tex	(original)
+++ python/trunk/Doc/lib/libctypes.tex	Wed Aug  2 14:00:13 2006
@@ -151,9 +151,9 @@
 
 \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):


More information about the Python-checkins mailing list