| 144 | |
| 145 | |
| 146 | class GeventResponse: |
| 147 | |
| 148 | status = None |
| 149 | headers = None |
| 150 | sent = None |
| 151 | |
| 152 | def __init__(self, status, headers, clength): |
| 153 | self.status = status |
| 154 | self.headers = headers |
| 155 | self.sent = clength |
| 156 | |
| 157 | |
| 158 | class PyWSGIHandler(pywsgi.WSGIHandler): |
no outgoing calls