在我的 appengine 应用程序中导入 ast(抽象语法树)模块时遇到了挑战。在我的本地开发机器上,一切正常,但是在我将应用程序部署到生产应用程序引擎后,我收到以下错误;
<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
google appengine 是否支持 ast 模块?
加思