Paul J. Davis 5af1273fc2 Added more valid request tests.
Found and fixed a couple read and readline related bugs.
2010-06-03 16:11:18 -04:00

13 lines
283 B
Python

request = {
"method": "POST",
"uri": uri("/chunked_w_trailing_headers"),
"version": (1, 1),
"headers": [
("TRANSFER-ENCODING", "chunked")
],
"body": "hello world",
"trailers": [
("VARY", "*"),
("CONTENT-TYPE", "text/plain")
]
}