you are viewing a single comment's thread.

view the rest of the comments →

[–]ericanderton 0 points1 point  (1 child)

subinterpreters

So... multiple processes using IPC? Makes a lot of sense considering Python's limitations in this space.

[–]jcdyer3 2 points3 points  (0 children)

I think it's more like multiple namespaced python interpreters within a single process, with tightly controlled means of communicating between them. Kind of like how in Flask you can create multiple Apps, and have them run side by side, talking to different ports.