[issue36963] PyDict_GetItem SegFaults on simple dictionary lookup when using Ctypes

Inada Naoki report at bugs.python.org
Sun May 19 19:35:34 EDT 2019


Inada Naoki <songofacandy at gmail.com> added the comment:

At first glance, you used ctypes.cdll, which releases GIL.  But you called Python/C API in extension module.  You shouldn't do it.
Try ctypes.pydll, which don't release GIL.

If it doesn't help you, please continue it in another communities.
I don't want to make Issue Tracker as user support forum.


> Could you let me know to whom I could reach out for help ?

Communities!

* Slack: https://pyslackers.com/
* Mailing list: https://mail.python.org/mailman/listinfo/python-list
* Stack Overflow: https://stackoverflow.com/questions/tagged/python

----------
nosy: +inada.naoki

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue36963>
_______________________________________


More information about the Python-bugs-list mailing list