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

Method _dbg

Lib/tarfile.py:2992–2996  ·  view source on GitHub ↗

Write debugging output to sys.stderr.

(self, level, msg)

Source from the content-addressed store, hash-verified

2990 yield tarinfo
2991
2992 def _dbg(self, level, msg):
2993 """Write debugging output to sys.stderr.
2994 """
2995 if level <= self.debug:
2996 print(msg, file=sys.stderr)
2997
2998 def __enter__(self):
2999 self._check()

Callers 8

addMethod · 0.95
_get_extract_tarinfoMethod · 0.95
_handle_fatal_errorMethod · 0.95
_extract_memberMethod · 0.95
makeunknownMethod · 0.95
nextMethod · 0.95

Calls 1

printFunction · 0.50

Tested by

no test coverage detected