Files
uwsgi/tests/refcount.py
T
roberto@debian32 5a58281a3f various gevent fixes
2011-08-26 07:37:26 +02:00

7 lines
158 B
Python

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