Return the y coordinate of the upper left corner of this widget in the parent.
(self)
| 1475 | self.tk.call('winfo', 'x', self._w)) |
| 1476 | |
| 1477 | def winfo_y(self): |
| 1478 | """Return the y coordinate of the upper left corner of this widget |
| 1479 | in the parent.""" |
| 1480 | return self.tk.getint( |
| 1481 | self.tk.call('winfo', 'y', self._w)) |
| 1482 | |
| 1483 | def update(self): |
| 1484 | """Enter event loop until all pending events have been processed by Tcl.""" |