Files
nginx-unit/test/python/unicode/wsgi.py
2023-02-21 15:35:38 +00:00

9 lines
236 B
Python

def application(environ, start_response):
temp_dir = environ.get('HTTP_TEMP_DIR')
with open(temp_dir + '/tempfile', 'w') as f:
f.write('\u26a0\ufe0f')
start_response('200', [('Content-Length', '0')])
return []