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

11 lines
262 B
Python

request = {
"method": "POST",
"uri": uri("/post_identity_body_world?q=search#hey"),
"version": (1, 1),
"headers": [
("ACCEPT", "*/*"),
("TRANSFER-ENCODING", "identity"),
("CONTENT-LENGTH", "5")
],
"body": "World"
}