MCPcopy Create free account
hub / github.com/python/cpython / _add_writer

Method _add_writer

Lib/asyncio/selector_events.py:931–932  ·  view source on GitHub ↗
(self, fd, callback, *args)

Source from the content-addressed store, hash-verified

929 self._loop._add_reader(fd, callback, *args, context=self._context)
930
931 def _add_writer(self, fd, callback, *args):
932 self._loop._add_writer(fd, callback, *args, context=self._context)
933
934 def _call_soon(self, callback, *args):
935 self._loop.call_soon(callback, *args, context=self._context)

Callers 4

writeMethod · 0.45
writelinesMethod · 0.45
sendtoMethod · 0.45
writeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected