Send Tcl command CMD to different interpreter INTERP to be executed.
(self, interp, cmd, *args)
| 1178 | return self._nametowidget(name) |
| 1179 | |
| 1180 | def send(self, interp, cmd, *args): |
| 1181 | """Send Tcl command CMD to different interpreter INTERP to be executed.""" |
| 1182 | return self.tk.call(('send', interp, cmd) + args) |
| 1183 | |
| 1184 | def lower(self, belowThis=None): |
| 1185 | """Lower this widget in the stacking order.""" |
no test coverage detected