apache / pulsar-client-python

Apache Pulsar Python client library
https://pulsar.apache.org/
Apache License 2.0
51 stars 39 forks source link

Converted usages of Py_BEGIN_ALLOW_THREADS #124

Open merlimat opened 1 year ago

merlimat commented 1 year ago

Use PyBind py::gil_scoped_release C++ class instead of the Python C Macros Py_BEGIN_ALLOW_THREADS for releasing / reacquiring the GIL.

This is just a code readability refactor.