DEBSOURCES
Skip Quicknav
sources / uwsgi / 2.0.31-1 / tests / refcount.py
1234567
import sys def application(e, sr): sr('200 OK', [('Content-Type', 'text/html')]) print(sys.gettotalrefcount()) yield '%s' % sys.gettotalrefcount()