GAE Python 2.7,没有 _io 模块?
我无法使用 Python 2.7 运行时导入 WebOb 1.1,因为 WebOb 导入 io,io 导入 _io,这被 SDK 阻止了。有没有办法将_io列入白名单?显然不应该将其列入黑名单。
I can't import WebOb 1.1 with the Python 2.7 runtime, as WebOb imports io, io imports _io, which is blocked by the SDK. Is there a way to whitelist _io? It is obviously not supposed to be blacklisted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从上下文来看,听起来您正在尝试在
dev_appserver
上运行您的应用程序。 dev_appserver 尚不支持 Python 2.7 运行时;现在您必须在 appspot 上进行开发和测试。From context, it sounds like you're trying to run your app on the
dev_appserver
. The dev_appserver does not yet support the Python 2.7 runtime; for now you'll have to do your development and testing on appspot.