(cmd, *, file=sys.stderr)
| 2549 | |
| 2550 | |
| 2551 | def _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 |
nothing calls this directly
no test coverage detected