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

Method msg

Lib/modulefinder.py:138–145  ·  view source on GitHub ↗
(self, level, str, *args)

Source from the content-addressed store, hash-verified

136 self.processed_paths = [] # Used in debugging only
137
138 def msg(self, level, str, *args):
139 if level <= self.debug:
140 for i in range(self.indent):
141 print(" ", end=' ')
142 print(str, end=' ')
143 for arg in args:
144 print(repr(arg), end=' ')
145 print()
146
147 def msgin(self, *args):
148 level = args[0]

Callers 7

msginMethod · 0.95
msgoutMethod · 0.95
run_scriptMethod · 0.95
import_hookMethod · 0.95
ensure_fromlistMethod · 0.95
find_all_submodulesMethod · 0.95
_safe_import_hookMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected