Remove a completion event from this future.
(self, event)
| 219 | event.set() |
| 220 | |
| 221 | def _remove_event(self, event): |
| 222 | """Remove a completion event from this future.""" |
| 223 | self._other_events.remove(event) |
| 224 | |
| 225 | def _set_clock_diff(self, server_response, localtime_of_response): |
| 226 | """Calculate and set the `.clock_diff`, based on headers from a server |