Files
nginx-unit/test/python/path/wsgi.py
2021-02-04 15:09:54 +00:00

9 lines
193 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]