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

Method __repr__

Lib/logging/__init__.py:1831–1833  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1829 return self.disabled or getattr(self._tls, 'in_progress', False)
1830
1831 def __repr__(self):
1832 level = getLevelName(self.getEffectiveLevel())
1833 return '<%s %s (%s)>' % (self.__class__.__name__, self.name, level)
1834
1835 def __reduce__(self):
1836 if getLogger(self.name) is not self:

Callers

nothing calls this directly

Calls 2

getEffectiveLevelMethod · 0.95
getLevelNameFunction · 0.85

Tested by

no test coverage detected