Issue #18026: fix ctypes doc typo

This commit is contained in:
Ned Deily 2013-05-20 14:29:44 -07:00
parent bcf06d364d
commit ea3cfc5f34

View file

@ -1274,7 +1274,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.