gunicorn/tests/requests/valid/compat_obs_fold.py
Paul J. Dorn 2bc931e7d9 whitespace handling in header field values
Strip whitespace also *after* header field value.
Simply refuse obsolete header folding (a default-off
option to revert is temporarily provided).
While we are at it, explicitly handle recently
introduced http error classes with intended status code.
2024-08-07 19:42:16 +02:00

17 lines
321 B
Python

from gunicorn.http.errors import ObsoleteFolding
from gunicorn.config import Config
cfg = Config()
cfg.set('permit_obsolete_folding', True)
request = {
"method": "GET",
"uri": uri("/"),
"version": (1, 1),
"headers": [
("LONG", "one two"),
("HOST", "localhost"),
],
"body": b""
}