(self)
| 884 | pass |
| 885 | |
| 886 | def _stop_accept_futures(self): |
| 887 | for future in self._accept_futures.values(): |
| 888 | future.cancel() |
| 889 | self._accept_futures.clear() |
| 890 | |
| 891 | def _stop_serving(self, sock): |
| 892 | future = self._accept_futures.pop(sock.fileno(), None) |