Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
uWSGI / tests / slow.py
Size: Mime:
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"