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 / refcount.py
Size: Mime:
import sys

def application(e, sr):
    sr('200 OK', [('Content-Type','text/html')])
    print sys.gettotalrefcount()
    yield '%s' % sys.gettotalrefcount()