I am embedding Python3 interpreter into Cocoa app. My app needs multiple separated Python execution contexts, so I need to spawn multiple interpreters.
Python3 manual offers at least two ways to spawn execution context.
PyInterpreterState_New
Py_NewInterpreter
What are them and which should I use to create completely separated python context? (like a system process)