We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ctypes.util.find_library()
Currently, for CoreFoundation and CoreText, we use a "hack" to find their library path because of a bug in the ctypes.util.find_library() function.
The bug has been resolved in those python version: 3.8.12 - https://docs.python.org/release/3.8.12/whatsnew/changelog.html#macos 3.9.7 - https://docs.python.org/release/3.9.7/whatsnew/changelog.html#macos 3.10.0 - https://docs.python.org/release/3.10.0/whatsnew/changelog.html#macos 3.11.0 alpha 1 - https://docs.python.org/release/3.11.0/whatsnew/changelog.html#id106
So, when we will required python 3.10 and more, we will need to drop this hack.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, for CoreFoundation and CoreText, we use a "hack" to find their library path because of a bug in the
ctypes.util.find_library()
function.The bug has been resolved in those python version:
3.8.12 - https://docs.python.org/release/3.8.12/whatsnew/changelog.html#macos
3.9.7 - https://docs.python.org/release/3.9.7/whatsnew/changelog.html#macos
3.10.0 - https://docs.python.org/release/3.10.0/whatsnew/changelog.html#macos
3.11.0 alpha 1 - https://docs.python.org/release/3.11.0/whatsnew/changelog.html#id106
So, when we will required python 3.10 and more, we will need to drop this hack.
The text was updated successfully, but these errors were encountered: