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

Method __repr__

Lib/asyncio/streams.py:329–333  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

327 self._complete_fut.set_result(None)
328
329 def __repr__(self):
330 info = [self.__class__.__name__, f'transport={self._transport!r}']
331 if self._reader is not None:
332 info.append(f'reader={self._reader!r}')
333 return '<{}>'.format(' '.join(info))
334
335 @property
336 def transport(self):

Callers

nothing calls this directly

Calls 3

appendMethod · 0.45
formatMethod · 0.45
joinMethod · 0.45

Tested by

no test coverage detected