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

Method __repr__

Lib/asyncio/windows_events.py:434–439  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

432 raise RuntimeError('IocpProactor is closed')
433
434 def __repr__(self):
435 info = ['overlapped#=%s' % len(self._cache),
436 'result#=%s' % len(self._results)]
437 if self._iocp is None:
438 info.append('closed')
439 return '<%s %s>' % (self.__class__.__name__, " ".join(info))
440
441 def set_loop(self, loop):
442 self._loop = loop

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45
joinMethod · 0.45

Tested by

no test coverage detected