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 ned.deily
Recipients karolyi, ned.deily, ronaldoussoren
Date 2019-11-16.23:34:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1573947266.77.0.163310668692.issue38814@roundup.psfhosted.org>
In-reply-to
Content
Almost any kind of crash is possible when using ctypes.  But you almost certainly don't want to be loading /usr/lib/libcrypto.dylib.  That's the macOS legacy version which is there only for legacy Apple-supplied third-party components, like the Apple-supplie system Python.  Apple doesn't even supply the header files for the system libssl and libcrypto deliberately so you are not supposed to be able to successfully link with them.  So you should try to figure out why asn1crypto is apparently linked with it.  It should likely be trying to link with a libcrypto provided by Homebrew openssl.  Good luck.
History
Date User Action Args
2019-11-16 23:34:26ned.deilysetrecipients: + ned.deily, ronaldoussoren, karolyi
2019-11-16 23:34:26ned.deilysetmessageid: <1573947266.77.0.163310668692.issue38814@roundup.psfhosted.org>
2019-11-16 23:34:26ned.deilylinkissue38814 messages
2019-11-16 23:34:26ned.deilycreate