blob: 73462be6e9e6d24195ca408d1bc2fa92adf7d375 (
plain) (
blame)
1
2
3
4
5
6
|
def application(env, start_response):
length = env.get('HTTP_X_LENGTH', '10')
bytes = b'X' * int(length)
start_response('200', [('Content-Length', length)])
return [bytes]
|