(self)
| 434 | self.connecting = False |
| 435 | |
| 436 | def handle_write_event(self): |
| 437 | if self.accepting: |
| 438 | # Accepting sockets shouldn't get a write event. |
| 439 | # We will pretend it didn't happen. |
| 440 | return |
| 441 | |
| 442 | if not self.connected: |
| 443 | if self.connecting: |
| 444 | self.handle_connect_event() |
| 445 | self.handle_write() |
| 446 | |
| 447 | def handle_expt_event(self): |
| 448 | # handle_expt_event() is called if there might be an error on the |
no test coverage detected