mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
7 lines
158 B
Python
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()
|