blob: 92d06ca78c4166453aab94fc3bfe5663b950cc53 (
plain)
1
2
3
4
5
6
|
def main(request, response):
headers = [("Content-type", "text/html;charset=shift-jis")]
# Shift-JIS bytes for katakana TE SU TO ('test')
content = chr(0x83) + chr(0x65) + chr(0x83) + chr(0x58) + chr(0x83) + chr(0x67);
return headers, content
|