Message315309
| 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:20 | Ian Burgwin | set | recipients: + Ian Burgwin |
| 2018-04-15 05:24:20 | Ian Burgwin | set | messageid: <1523769860.6.0.682650639539.issue33281@psf.upfronthosting.co.za> |
| 2018-04-15 05:24:20 | Ian Burgwin | link | issue33281 messages |
| 2018-04-15 05:24:19 | Ian Burgwin | create | |