blob: 00b37c62abc7d7c34ed983f6dadac910bb0ff9f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- coding: utf-8 -*-
def main(request, response):
response.headers.set(b"Content-Type", b"text/plain")
response.headers.set(b"X-Custom-Header", b"test")
response.headers.set(b"Set-Cookie", b"test")
response.headers.set(b"Set-Cookie2", b"test")
response.headers.set(b"X-Custom-Header-Empty", b"")
response.headers.set(b"X-Custom-Header-Comma", b"1")
response.headers.append(b"X-Custom-Header-Comma", b"2")
response.headers.set(b"X-Custom-Header-Bytes", u"…".encode("utf-8"))
return b"TEST"
|