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

Method __repr__

Lib/threading.py:712–717  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

710 self._count = 0
711
712 def __repr__(self):
713 cls = self.__class__
714 if self.broken:
715 return f"<{cls.__module__}.{cls.__qualname__} at {id(self):#x}: broken>"
716 return (f"<{cls.__module__}.{cls.__qualname__} at {id(self):#x}:"
717 f" waiters={self.n_waiting}/{self.parties}>")
718
719 def wait(self, timeout=None):
720 """Wait for the barrier.

Callers

nothing calls this directly

Calls 1

idFunction · 0.85

Tested by

no test coverage detected