[issue41179] find_library on macOS Big Sur

2020-07-01 Thread Ned Deily
Change by Ned Deily : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41179] find_library on macOS Big Sur

2020-07-01 Thread Sumanth Ratna
Sumanth Ratna added the comment: I see; thanks for letting me know! I saw Issue41100 but I had assumed that it was only for build issues :) Should I close this issue? -- ___ Python tracker

[issue41179] find_library on macOS Big Sur

2020-07-01 Thread Ronald Oussoren
Ronald Oussoren added the comment: We're tracking macOS 11 changes in Issue41100. That issue has a PRs from Apple for, amongst others, this issue. -- components: +macOS nosy: +ned.deily, ronaldoussoren superseder: -> Build failure on macOS 11 (beta) versions: +Python 3.10, Python

[issue41179] find_library on macOS Big Sur

2020-06-30 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +20400 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21250 ___ Python tracker

[issue41179] find_library on macOS Big Sur

2020-06-30 Thread Sumanth Ratna
New submission from Sumanth Ratna : The following all return None on macOS Big Sur, but return a valid path (str) on macOS Catalina: python3.6 -c "from ctypes import util; print(util.find_library('objc'))" python3.7 -c "from ctypes import util; print(util.find_library('objc'))" python3.8 -c