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

Method __init__

Lib/asyncio/transports.py:272–277  ·  view source on GitHub ↗
(self, extra=None, loop=None)

Source from the content-addressed store, hash-verified

270 __slots__ = ('_loop', '_protocol_paused', '_high_water', '_low_water')
271
272 def __init__(self, extra=None, loop=None):
273 super().__init__(extra)
274 assert loop is not None
275 self._loop = loop
276 self._protocol_paused = False
277 self._set_write_buffer_limits()
278
279 def _maybe_pause_protocol(self):
280 size = self.get_write_buffer_size()

Callers

nothing calls this directly

Calls 3

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected