blob: ad24cca963a250483632e556887bfecb706a46c6 (
plain) (
blame)
1
2
3
4
5
6
7
|
class application:
def __init__(self, environ, start_response):
self.environ = environ
self.start = start_response
def __iter__(self):
self.start('200', [(('Content-Length', '0'))])
|