<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import time
import uwsgi
def application(e,s):
    print("locking")
    uwsgi.lock()
    print("locked")
    time.sleep(3)
    uwsgi.unlock()
    print("UN-locked")
    s('200 OK', [('Content-Type','text/html')])
    return "slow"

</pre></body></html>