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

Method msg

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

Source from the content-addressed store, hash-verified

131 self.processed_paths = [] # Used in debugging only
132
133 def msg(self, level, str, *args):
134 if level <= self.debug:
135 for i in range(self.indent):
136 print(" ", end=' ')
137 print(str, end=' ')
138 for arg in args:
139 print(repr(arg), end=' ')
140 print()
141
142 def msgin(self, *args):
143 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 2

reprFunction · 0.85
printFunction · 0.50

Tested by

no test coverage detected