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

Function _print_command

Lib/tkinter/__init__.py:2551–2555  ·  view source on GitHub ↗
(cmd, *, file=sys.stderr)

Source from the content-addressed store, hash-verified

2549
2550
2551def _print_command(cmd, *, file=sys.stderr):
2552 # Print executed Tcl/Tk commands.
2553 assert isinstance(cmd, tuple)
2554 cmd = _join(cmd)
2555 print(cmd, file=file)
2556
2557
2558# Ideally, the classes Pack, Place and Grid disappear, the

Callers

nothing calls this directly

Calls 3

isinstanceFunction · 0.85
_joinFunction · 0.70
printFunction · 0.50

Tested by

no test coverage detected