ericsnowcurrently / multi-core-python

Enabling CPython multi-core parallelism via subinterpreters.
BSD 3-Clause "New" or "Revised" License
245 stars 6 forks source link

what's the story on error handling and cancellation? #81

Open ckp95 opened 1 year ago

ckp95 commented 1 year ago

Hi, I came here after watching the Pycon 2023 talk about this. Hope this isn't the wrong place to ask. I want to understand how this approach to concurrency deals with error handling and cancellation.

Let's say I write code using subinterpreters as the concurrency mechanism, rather than threads or processes or async.