MCPcopy Index your code
hub / github.com/RustPython/RustPython / handle_write_event

Method handle_write_event

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

Source from the content-addressed store, hash-verified

444 self.connecting = False
445
446 def handle_write_event(self):
447 if self.accepting:
448 # Accepting sockets shouldn't get a write event.
449 # We will pretend it didn't happen.
450 return
451
452 if not self.connected:
453 if self.connecting:
454 self.handle_connect_event()
455 self.handle_write()
456
457 def handle_expt_event(self):
458 # 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