1import sys
2
3def application(e, sr):
4    sr('200 OK', [('Content-Type','text/html')])
5    print sys.gettotalrefcount()
6    yield '%s' % sys.gettotalrefcount()
7