我有一个在ubuntu服务器上使用Google AppEngine(python 2.5)功能的应用程序。 该应用程序由python 2.6开发。
这里的例子:
# Google API Loading for apache mod_wsgi
from google.appengine.api import apiproxy_stub_map
from google.appengine.api import urlfetch_stub
from google.appengine.api import mail_stub
from google.appengine.api import user_service_stub
from google.appengine.api.memcache import memcache_stub
from google.appengine.ext import webapp
class Class1(webapp.RequestHandler)
我应该尽快迁移到python2.7吗?对于我的案例,python2.5的谷歌弃用政策是什么,准确的时间了吗?
注意我已经将Google AppEngine应用程序python2.5迁移到了部署在GAPE中的2.7。 此致