On Apr 13, 6:16 pm, "Lord Gustavo Miguel Angel" <[email protected]> wrote: > hi. > > i have install ubuntu 9.10 with python 2.6 > my question: > app-engine work with version 2.6? > > thank's
The App Engine servers run python 2.5.2. While dev_appserver.py and appcfg.py will generally run on python 2.6 after throwing a bunch of warnings about deprecated modules and such, you need to be very careful that you're not using syntax new to 2.6, since your code will run fine in your development environment but not when deployed; the whole point of dev_appserver is to mimic the production environment, so this sort of thing is far from ideal. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
