mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
12 lines
264 B
Python
12 lines
264 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": b"World"
|
|
}
|