When I Py.Call Py.Builtin module, there is an Importerror: No module named __builtin__ .
My python version is Python3.4.
In file xlpyserver.py, line 191, I change:
import __builtin__
to:
import builtins
because I use version 3, however it doesn't work.
How can I fix it, please?