mirror of
https://github.com/servo/servo.git
synced 2025-10-10 05:20:19 +01:00
5 lines
218 B
Python
5 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))
|