summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-08-30 09:09:34 (GMT)
committerGitHub <noreply@github.com>2021-08-30 09:09:34 (GMT)
commit41c87c41761739e90867a43de26e0f6755c80ff7 (patch)
tree142b573b4f4da7cb6397068c15fb21676e985a30 /Misc
parent66b8202c079f3891ff398fec25bb898297ddd5af (diff)
downloadcpython-41c87c41761739e90867a43de26e0f6755c80ff7.zip
cpython-41c87c41761739e90867a43de26e0f6755c80ff7.tar.gz
cpython-41c87c41761739e90867a43de26e0f6755c80ff7.tar.bz2
bpo-44689: ctypes.util.find_library() now finds macOS 11+ system libraries when built on older macOS systems (GH-27251)
Previously, when built on older macOS systems, `find_library` was not able to find macOS system libraries when running on Big Sur due to changes in how system libraries are stored. (cherry picked from commit 71853a73024a98aa38a3c0444fe364dbd9709134) Co-authored-by: Tobias Bergkvist <tobias@bergkv.ist>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/macOS/2021-07-20-22-27-01.bpo-44689.mmT_xH.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2021-07-20-22-27-01.bpo-44689.mmT_xH.rst b/Misc/NEWS.d/next/macOS/2021-07-20-22-27-01.bpo-44689.mmT_xH.rst
new file mode 100644
index 0000000..b1e878d
--- /dev/null
+++ b/Misc/NEWS.d/next/macOS/2021-07-20-22-27-01.bpo-44689.mmT_xH.rst
@@ -0,0 +1,5 @@
+ :meth:`ctypes.util.find_library` now works correctly on macOS 11 Big Sur
+ even if Python is built on an older version of macOS. Previously, when
+ built on older macOS systems, ``find_library`` was not able to find
+ macOS system libraries when running on Big Sur due to changes in
+ how system libraries are stored.