(self)
| 285 | self._exc = exc |
| 286 | |
| 287 | def exception(self): |
| 288 | if hasattr(self, '_exc') and self._exc: |
| 289 | raise self._exc |
| 290 | |
| 291 | def __call__(self, environ: dict, start_response: abc.Callable): |
| 292 | self.store_request(environ) |
no outgoing calls
no test coverage detected