This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Ian Burgwin
Recipients Ian Burgwin
Date 2018-04-15.05:24:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1523769860.6.0.682650639539.issue33281@psf.upfronthosting.co.za>
In-reply-to
Content
On Python 3.7.0a4 and later (including 3.7.0b4), find_library currently always returns None on macOS. It works on 3.7.0a3 and earlier. Tested on macOS 10.11 and 10.13.

Expected result: Tested on 3.6.5, 3.7.0a1 and 3.7.0a3:

>>> from ctypes.util import find_library
>>> find_library('iconv')
'/usr/lib/libiconv.dylib'
>>> find_library('c')
'/usr/lib/libc.dylib'
>>>

Current output on 3.7.0a4 to 3.7.0b3:

>>> from ctypes.util import find_library
>>> find_library('iconv')
>>> find_library('c')
>>>
History
Date User Action Args
2018-04-15 05:24:20Ian Burgwinsetrecipients: + Ian Burgwin
2018-04-15 05:24:20Ian Burgwinsetmessageid: <1523769860.6.0.682650639539.issue33281@psf.upfronthosting.co.za>
2018-04-15 05:24:20Ian Burgwinlinkissue33281 messages
2018-04-15 05:24:19Ian Burgwincreate