MCPcopy Index your code
hub / github.com/python/cpython / handle_write_event

Method handle_write_event

Lib/test/support/asyncore.py:436–445  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers 2

writeFunction · 0.45
readwriteFunction · 0.45

Calls 2

handle_connect_eventMethod · 0.95
handle_writeMethod · 0.95

Tested by

no test coverage detected