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

Method __repr__

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

Source from the content-addressed store, hash-verified

1820 _hierlevel(item) == 1 + _hierlevel(item.parent))
1821
1822 def __repr__(self):
1823 level = getLevelName(self.getEffectiveLevel())
1824 return '<%s %s (%s)>' % (self.__class__.__name__, self.name, level)
1825
1826 def __reduce__(self):
1827 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