From: Ned Deily Date: Mon, 20 May 2013 21:27:06 +0000 (-0700) Subject: Issue #18026: fix ctypes doc typo X-Git-Tag: v2.7.6rc1~384 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7cb506789a8003cd707343a43cd6b0595a99606;p=thirdparty%2FPython%2Fcpython.git Issue #18026: fix ctypes doc typo --- diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index c72a0b5a4eda..6be8debaf02c 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1333,7 +1333,7 @@ returns the full pathname, but since there is no predefined naming scheme a call like ``find_library("c")`` will fail and return ``None``. If wrapping a shared library with :mod:`ctypes`, it *may* be better to determine -the shared library name at development type, and hardcode that into the wrapper +the shared library name at development time, and hardcode that into the wrapper module instead of using :func:`find_library` to locate the library at runtime.