Error: Server Errorこのエラー表示は、いろいろな原因で発生するようである。
The server encountered an error and could not complete your request.
If the problem persists, please report your problem and mention this error message and the query that caused it.
Google App Engine の管理コンソールからログを見ると、次のようにエラーが表示されている。
<type 'exceptions.SyntaxError'>: Non-ASCII character '\xe3' in fileこのエラーはpythonソース上でASCII文字以外を扱っている場合に表示される。
/base/data/home/apps/xxxxx/x.xxxxx/test.py on line 9, but no encoding declared; see
http://www.python.org/peps/pep-0263.html for details (test.py, line 9)
プログラムで日本語を扱っている場合は、pythonソースの先頭に次の一行を入れる。
# -*- coding: utf-8 -*-