MCPcopy Index your code
hub / github.com/python/cpython / send

Method send

Lib/tkinter/__init__.py:1180–1182  ·  view source on GitHub ↗

Send Tcl command CMD to different interpreter INTERP to be executed.

(self, interp, cmd, *args)

Source from the content-addressed store, hash-verified

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."""

Callers 2

_signal_readinessFunction · 0.45
putmessageMethod · 0.45

Calls 1

callMethod · 0.45

Tested by

no test coverage detected