diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-12-20 20:20:56 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-12-20 20:20:56 (GMT) |
commit | a9b9ae46782b8d8c4b4f07a1efff82c8f52703ec (patch) | |
tree | 58bd12c5031f083be262d2868427f20567e1953c | |
parent | 2a927915cbfff5f8b17933c4cb37bfdb74111c01 (diff) | |
download | cpython-a9b9ae46782b8d8c4b4f07a1efff82c8f52703ec.zip cpython-a9b9ae46782b8d8c4b4f07a1efff82c8f52703ec.tar.gz cpython-a9b9ae46782b8d8c4b4f07a1efff82c8f52703ec.tar.bz2 |
[Bug #1619680] in_dll() arguments are documented in the wrong order
-rwxr-xr-x | Doc/lib/libctypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libctypes.tex b/Doc/lib/libctypes.tex index c0e2310..a7c2459 100755 --- a/Doc/lib/libctypes.tex +++ b/Doc/lib/libctypes.tex @@ -2085,7 +2085,7 @@ classmethod, normally it returns \code{obj} if that is an instance of 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. |