capnproto / pycapnp

Cap'n Proto serialization/RPC system - Python bindings
BSD 2-Clause "Simplified" License
458 stars 125 forks source link

Unlock the GIL for all capnp functions that do IO #338

Closed mlaiosa closed 9 months ago

mlaiosa commented 9 months ago

IO might block, and its rude to block while holding the GIL, since that prevents other threads from running.

haata commented 9 months ago

Thanks!