mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
8 lines
160 B
Python
8 lines
160 B
Python
import sys
|
|
|
|
|
|
def application(e, sr):
|
|
sr('200 OK', [('Content-Type', 'text/html')])
|
|
print sys.gettotalrefcount()
|
|
yield '%s' % sys.gettotalrefcount()
|