如何在Google App Engine中导入ast模块
我在我的应用程序中导入 ast(抽象语法树)模块时遇到了问题。在我本地的开发机器上,一切都运行得很好,但当我把应用程序部署到生产环境的 appengine 后,就出现了以下错误:
<type 'exceptions.ImportError'>: No module named ast
Traceback (most recent call last):
File "/base/data/home/apps/s~appname/1.365758902437943607/main.py", line 3, in <module>
import ast
谷歌的 appengine 支持 ast 模块吗?
Gath