我打算将Google Appengine Python运行时2.7迁移到3.7。我如何才能无缝地实现它?
发布于 2018-11-12 09:26:29
埋藏在官方文档中的Understanding differences between Python 2 and Python 3 on the App Engine standard environment描述了挑战。除非您不使用ndb、memcache、电子邮件或使GAE-Std-Py27成为PaaS的大多数其他API,否则您将无法无缝迁移。这些API中的大多数都不可用(还没有?)在GAE-Std-Py3中。
https://stackoverflow.com/questions/53195291
复制相似问题