diff options
author | Malcolm Smith <smith@chaquo.com> | 2024-03-21 13:20:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 13:20:57 (GMT) |
commit | 1f8b24ef69896680d6ba6005e75e1cc79a744f9e (patch) | |
tree | a687864eb6a3f6a68b8f0fb2c1a1ac5f4cc02c51 /Doc | |
parent | d16c9d1278164f04778861814ebc87ed087511fc (diff) | |
download | cpython-1f8b24ef69896680d6ba6005e75e1cc79a744f9e.zip cpython-1f8b24ef69896680d6ba6005e75e1cc79a744f9e.tar.gz cpython-1f8b24ef69896680d6ba6005e75e1cc79a744f9e.tar.bz2 |
gh-71052: Implement `ctypes.util.find_library` on Android (GH-116379)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ctypes.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 3697647..9f7d645 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1334,8 +1334,9 @@ Here are some examples:: 'libbz2.so.1.0' >>> -On macOS, :func:`~ctypes.util.find_library` tries several predefined naming schemes and paths -to locate the library, and returns a full pathname if successful:: +On macOS and Android, :func:`~ctypes.util.find_library` uses the system's +standard naming schemes and paths to locate the library, and returns a full +pathname if successful:: >>> from ctypes.util import find_library >>> find_library("c") |