(self)
| 2322 | self.execute() |
| 2323 | |
| 2324 | def on_connection_close(self) -> None: |
| 2325 | if self.stream_request_body: |
| 2326 | self.handler.on_connection_close() |
| 2327 | else: |
| 2328 | self.chunks = None # type: ignore |
| 2329 | |
| 2330 | def execute(self) -> Optional[Awaitable[None]]: |
| 2331 | # If template cache is disabled (usually in the debug mode), |
nothing calls this directly
no test coverage detected