summaryrefslogtreecommitdiffhomepage
path: root/test/python/unicode/wsgi.py
blob: 8c9a59dd468c227c64053ee1db17670084749a55 (plain) (blame)
1
2
3
4
5
6
7
8
def application(environ, start_response):
    temp_dir = environ.get('HTTP_TEMP_DIR')

    with open(f'{temp_dir}/tempfile', 'w', encoding='utf-8') as f:
        f.write('\u26a0\ufe0f')

    start_response('200', [('Content-Length', '0')])
    return []