Re: [html-tests] Test that form data name/values are converted to USVs (#4284)

OK, I think I got that part...

```python
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
    )
```

Will incorporate that later

View on GitHub: https://github.com/w3c/web-platform-tests/pull/4284#issuecomment-265322366

Received on Wednesday, 7 December 2016 00:55:02 UTC