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 methane
Recipients apoorvreddy, larry, methane, tehybel
Date 2019-05-19.23:35:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558308934.99.0.186701980233.issue36963@roundup.psfhosted.org>
In-reply-to
Content
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
History
Date User Action Args
2019-05-19 23:35:35methanesetrecipients: + methane, larry, tehybel, apoorvreddy
2019-05-19 23:35:34methanesetmessageid: <1558308934.99.0.186701980233.issue36963@roundup.psfhosted.org>
2019-05-19 23:35:34methanelinkissue36963 messages
2019-05-19 23:35:34methanecreate