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

andrew.kuchling python-checkins at python.org
Wed Dec 20 21:20:43 CET 2006


Author: andrew.kuchling
Date: Wed Dec 20 21:20:42 2006
New Revision: 53117

Modified:
   python/trunk/Doc/lib/libctypes.tex
Log:
[Bug #1619680] in_dll() arguments are documented in the wrong order

Modified: python/trunk/Doc/lib/libctypes.tex
==============================================================================
--- python/trunk/Doc/lib/libctypes.tex	(original)
+++ python/trunk/Doc/lib/libctypes.tex	Wed Dec 20 21:20:42 2006
@@ -2085,7 +2085,7 @@
 the type.  Some types accept other objects as well.
 \end{methoddesc}
 
-\begin{methoddesc}{in_dll}{name, library}
+\begin{methoddesc}{in_dll}{library, name}
 This method returns a ctypes type instance exported by a shared
 library. \var{name} is the name of the symbol that exports the data,
 \code{library} is the loaded shared library.


More information about the Python-checkins mailing list