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

Function errprint

Lib/tabnanny.py:30–36  ·  view source on GitHub ↗
(*args)

Source from the content-addressed store, hash-verified

28filename_only = 0
29
30def errprint(*args):
31 sep = ""
32 for arg in args:
33 sys.stderr.write(sep + str(arg))
34 sep = " "
35 sys.stderr.write("\n")
36 sys.exit(1)
37
38def main():
39 import getopt

Callers 2

mainFunction · 0.85
checkFunction · 0.85

Calls 3

strFunction · 0.85
writeMethod · 0.45
exitMethod · 0.45

Tested by

no test coverage detected