Close the transport immediately. Buffered data will be lost. No more data will be received. The protocol's connection_lost() method will (eventually) be called with None as its argument.
(self)
| 241 | return False |
| 242 | |
| 243 | def abort(self): |
| 244 | """Close the transport immediately. |
| 245 | |
| 246 | Buffered data will be lost. No more data will be received. |
| 247 | The protocol's connection_lost() method will (eventually) be |
| 248 | called with None as its argument. |
| 249 | """ |
| 250 | self._force_close(None) |
| 251 | |
| 252 | def _force_close(self, exc): |
| 253 | self._closed = True |
nothing calls this directly
no test coverage detected