Is there any feature in pypy that allows for a standard CPython 2.7 interpreter to be run for a designated section of code? I have a function that has pandas code within it (its a performance intensive function, benefiting greatly by pandas), all references to pandas are contained within that function.
Obviously pypy can't interpret pandas code due to pandas' C-bound nature. Is there a way that I can "switch over" to a standard interpreter just for this function? The codebase as a whole greatly benefits from a pypy interpreter.