Suppose I have a python module compiled from C++ called Foo (Foo.pyd). Can I call python from the .pyd module? Is it going to use the same interpreter that is running Foo.pyd, or it runs another interpreter?
Assuming I do not use boost python or swig, i.e., only native Python-C API is available.