mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-11 22:50:40 +00:00
4 lines
184 B
Python
4 lines
184 B
Python
def main(request, response):
|
|
response.headers.set("Content-Type", "text/plain;charset=" + request.GET.first("label"))
|
|
response.content = "".join(chr(byte) for byte in xrange(255))
|