I wanted to test python27 on appengine so I have migrated my app from python25. Performance got more than 2x slower for every request! Then I\'ve returned to python25 and perfor
Did you migrated your application to use WSGI instead of CGI when run on python 2.7?
It is possible that CGI interface is just a wrapper around WSGI that is enabled for 2.7 now.