mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
14 lines
285 B
Python
14 lines
285 B
Python
request = {
|
|
"method": "POST",
|
|
"uri": uri("/chunked_w_trailing_headers"),
|
|
"version": (1, 1),
|
|
"headers": [
|
|
("TRANSFER-ENCODING", "chunked")
|
|
],
|
|
"body": b"hello world",
|
|
"trailers": [
|
|
("VARY", "*"),
|
|
("CONTENT-TYPE", "text/plain")
|
|
]
|
|
}
|