Files
2015-02-19 06:54:01 +01:00

5 lines
230 B
Python

# uwsgi --route-run remheader:Content-Length --route-run forcecl: --wsgi-file t/python/forcecl.py --http-socket :9090
def application(e, sr):
sr('200 OK', [('Content-Length', '1'), ('Content-Length', '2')])
return ['xxx']