mirror of
https://github.com/servo/servo.git
synced 2025-10-10 21:40:22 +01:00
6 lines
212 B
Python
6 lines
212 B
Python
def main(request, response):
|
|
output = b"HTTP/1.1 "
|
|
output += request.GET.first(b"input")
|
|
output += b"\nheader-parsing: is sad\n"
|
|
response.writer.write(output)
|
|
response.close_connection = True
|