mirror of
https://github.com/servo/servo
synced 2026-05-13 02:17:06 +02:00
4 lines
162 B
Python
4 lines
162 B
Python
def main(request, response):
|
|
response.headers.set(b"Content-Type", b"text/plain;charset=" + request.GET.first(b"label"))
|
|
response.content = bytes(range(255))
|