mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
6 lines
218 B
Python
6 lines
218 B
Python
from six import int2byte
|
|
|
|
def main(request, response):
|
|
response.headers.set(b"Content-Type", b"text/plain;charset=" + request.GET.first(b"label"))
|
|
response.content = b"".join(int2byte(byte) for byte in range(255))
|