Files
nginx-unit/test/python/path/wsgi.py
Andrei Zeliankou 6c97a1a069 Tests: style.
2021-04-05 14:03:05 +01:00

10 lines
194 B
Python

import os
import sys
def application(environ, start_response):
body = os.pathsep.join(sys.path).encode()
start_response('200', [('Content-Length', str(len(body)))])
return [body]