diff options
author | Ned Deily <nad@acm.org> | 2013-05-20 21:29:44 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-05-20 21:29:44 (GMT) |
commit | ea3cfc5f34aaea9e29aea1d55c813b97b8c3ef86 (patch) | |
tree | 2d794b557ac1a55dcade3b35c6c967d65596a6e3 /Doc/library | |
parent | bcf06d364df2b2a69dd419124b218f44284d43df (diff) | |
download | cpython-ea3cfc5f34aaea9e29aea1d55c813b97b8c3ef86.zip cpython-ea3cfc5f34aaea9e29aea1d55c813b97b8c3ef86.tar.gz cpython-ea3cfc5f34aaea9e29aea1d55c813b97b8c3ef86.tar.bz2 |
Issue #18026: fix ctypes doc typo
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ctypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 5f5a512..33ff12b 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -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. |