summaryrefslogtreecommitdiffhomepage
path: root/test/python/server_port/wsgi.py
blob: c796da9591ace196ddd74c6a806ecf460c8c2e23 (plain) (blame)
1
2
3
4
5
6
7
def application(environ, start_response):

    start_response(
        '200',
        [('Content-Length', '0'), ('Server-Port', environ.get('SERVER_PORT'))],
    )
    return []