summaryrefslogtreecommitdiff
path: root/tests/refcount.py
blob: c83085f4d078875f3af93cf41dc96bad2e818244 (plain)
1
2
3
4
5
6
7
import sys


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