Files
nginx-unit/test/python/body_generate/wsgi.py
Andrei Zeliankou 5a8337933d Tests: pathlib used where appropriate
Also fixed various pylint errors and style issues.
2024-01-15 15:48:58 +00:00

7 lines
187 B
Python

def application(env, start_response):
length = env.get('HTTP_X_LENGTH', '10')
body = b'X' * int(length)
start_response('200', [('Content-Length', length)])
return [body]