https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0032bc09b92ec14a4c3ec19b161586484ac8a995 authored by Simon Pieters on 10 June 2018, 10:28:37 UTC
Add functional selftests, set status to ERROR when mixing single_test and test
Tip revision: 0032bc0
form-echo.py
def main(request, response):
    bytes = bytearray(request.raw_input.read())
    bytes_string = " ".join("%02x" % b for b in bytes)
    return (
        [("Content-Type", "text/plain")],
        bytes_string
    )
back to top