(cmd, *, file=sys.stderr)
| 2623 | |
| 2624 | |
| 2625 | def _print_command(cmd, *, file=sys.stderr): |
| 2626 | # Print executed Tcl/Tk commands. |
| 2627 | assert isinstance(cmd, tuple) |
| 2628 | cmd = _join(cmd) |
| 2629 | print(cmd, file=file) |
| 2630 | |
| 2631 | |
| 2632 | # Ideally, the classes Pack, Place and Grid disappear, the |
nothing calls this directly
no test coverage detected
searching dependent graphs…