- From: Domenic Denicola <web-platform-tests-notifications@w3.org>
- Date: Wed, 07 Dec 2016 00:54:48 GMT
- To: public-web-platform-tests-notifications@w3.org
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