summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/cookies/support/set-cookie.py
blob: 8a47d7cdd8ea0542d68f1cf5a2a76e609efb5727 (plain)
1
2
3
4
5
import urllib

def main(request, response):
    response.headers.set('Set-Cookie', urllib.unquote(request.url_parts.query))
    return [("Content-Type", "text/plain")], ""